diff --git a/.oca/oca-port/blacklist/base_location.json b/.oca/oca-port/blacklist/base_location.json new file mode 100644 index 000000000000..7c173d5b3289 --- /dev/null +++ b/.oca/oca-port/blacklist/base_location.json @@ -0,0 +1,6 @@ +{ + "pull_requests": { + "orphaned_commits": "Nothing to port", + "1472": "Nothing to port" + } +} diff --git a/base_location/README.rst b/base_location/README.rst new file mode 100644 index 000000000000..d24fb008d66a --- /dev/null +++ b/base_location/README.rst @@ -0,0 +1,134 @@ +==================================== +Location management (aka Better ZIP) +==================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:d2d2c3fb7340a58539b32f48714ff8c7d557889af4d93a7d90f06c85343a058b + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png + :target: https://odoo-community.org/page/development-status + :alt: Mature +.. |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/18.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-18-0/partner-contact-18-0-base_location + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/partner-contact&target_branch=18.0 + :alt: Try me on Runboat + +|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. + +Also allows different search filters. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +1. Go to *Contacts / Configuration / Localization / Cities*. +2. Create a new City. +3. Go to *Contacts / Configuration / Localization / Zips*. +4. 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'. + +Usage +===== + +1. Access a partner record +2. Fill the field *Location completion* +3. Information about country, state, city and zip will be filled + automatically + +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 to smash 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 +------------ + +- Nicolas Bessi (Camptocamp) +- Ignacio Ibeas (Acysos S.L.) +- Pedro M. Baeza +- Alejandro Santana +- Sandy Carter +- Yannick Vaucher +- Francesco Apruzzese +- Dave Lasley +- Aitor Bouzas +- Khoi (Kien Kim) + +Other credits +------------- + +- Icon park: Icon http://icon-park.com/icon/location-map-pin-orange3/ + +The migration of this module from 17.0 to 18.0 was financially supported +by: + +- Camptocamp. + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-pedrobaeza| image:: https://github.com/pedrobaeza.png?size=40px + :target: https://github.com/pedrobaeza + :alt: pedrobaeza + +Current `maintainer `__: + +|maintainer-pedrobaeza| + +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 new file mode 100644 index 000000000000..69f7babdfb1a --- /dev/null +++ b/base_location/__init__.py @@ -0,0 +1,3 @@ +# 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..853b11fa36e2 --- /dev/null +++ b/base_location/__manifest__.py @@ -0,0 +1,33 @@ +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# Copyright 2018-2022 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Location management (aka Better ZIP)", + "version": "18.0.1.0.0", + "development_status": "Mature", + "depends": ["base_address_extended", "contacts"], + "author": ( + "Camptocamp," + "ACYSOS S.L.," + "Alejandro Santana," + "Tecnativa," + "AdaptiveCity," + "Odoo Community Association (OCA)" + ), + "license": "AGPL-3", + "summary": """Enhanced zip/npa management system""", + "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/res_city_zip.xml"], + "installable": True, + "auto_install": False, + "maintainers": ["pedrobaeza"], +} diff --git a/base_location/demo/res_city_zip.xml b/base_location/demo/res_city_zip.xml new file mode 100644 index 000000000000..03f960184721 --- /dev/null +++ b/base_location/demo/res_city_zip.xml @@ -0,0 +1,11 @@ + + + + Brussels + + + + 1000 + + + diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po new file mode 100644 index 000000000000..6bb5d8b79d81 --- /dev/null +++ b/base_location/i18n/am.po @@ -0,0 +1,233 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: am\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/ar.po b/base_location/i18n/ar.po new file mode 100644 index 000000000000..699ecd96e642 --- /dev/null +++ b/base_location/i18n/ar.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "المعرف" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "تجميع حسب" diff --git a/base_location/i18n/base_location.pot b/base_location/i18n/base_location.pot new file mode 100644 index 000000000000..1dee4216de96 --- /dev/null +++ b/base_location/i18n/base_location.pot @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "" + +#. module: base_location +#: 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_city_zip__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location " +"%(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/bg.po b/base_location/i18n/bg.po new file mode 100644 index 000000000000..1dfe1f5985e2 --- /dev/null +++ b/base_location/i18n/bg.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: bg\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Групиране по" diff --git a/base_location/i18n/bs.po b/base_location/i18n/bs.po new file mode 100644 index 000000000000..027dc65f788b --- /dev/null +++ b/base_location/i18n/bs.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupiši po" diff --git a/base_location/i18n/ca.po b/base_location/i18n/ca.po new file mode 100644 index 000000000000..9ec43c1086cd --- /dev/null +++ b/base_location/i18n/ca.po @@ -0,0 +1,264 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2024-09-04 17:06+0000\n" +"Last-Translator: Esteve Blanch Sanmartí <3501974+esteveblanch@users.noreply." +"github.com>\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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Brussel·les" + +#. 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 "" +"Marqueu aquesta casella per assegurar-vos que totes les adreces creades en " +"aquest país tinguin una \"Ciutat\" escollida a la llista de ciutats del país." + +#. module: base_location +#: 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 "Ciutats" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Ciutat" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "Identificació de la ciutat" + +#. module: base_location +#: 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 "Autocompletat de la població" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city_zip +msgid "City/locations completion object" +msgstr "Autocompletat d'objectes a partir de ciutats/ubicacions" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Empreses" + +#. 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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Mostra i gestiona la llista de totes les ciutats a les quals es pot " +"assignar\n" +" registres de la teva parella. Tingueu en compte que es pot " +"establir una opció a cada país\n" +" per separat\n" +" per fer complir qualsevol adreça d'aquesta per tenir una ciutat " +"en aquesta llista." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Força les ciutats" + +#. module: base_location +#: 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_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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Autocompletat de la ubicació" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Ubicacions" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Cerca codi postal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Estat" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"La ciutat del soci %(partner)s és diferent de la de la ubicació %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"El país del soci %(partner)s és diferent de la de la ubicació %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"L'Estat del soci %(partner)s és diferent de la de la ubicació %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"El codi postal del soci %(partner)s és diferent de la de la ubicació " +"%(location)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 "Utilitzeu el nom de la ciutat o el codi postal per cercar la ubicació" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Ja teniu una ciutat amb aquest nom al mateix estat. La ciutat ha de tenir un " +"nom únic dins del seu estat i del seu país" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Ja tens un codi postal amb aquest codi a la mateixa ciutat. El codi postal " +"ha de ser únic dins de la seva ciutat" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" +msgstr "Codi 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 "Ubicació del codi postal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "Codi postal" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "Codis postal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "Codis postal en aquesta ciutat" + +#~ msgid "City of Address" +#~ msgstr "Ciutat d'adreça" + +#~ msgid "Group By" +#~ msgstr "Agrupa Per" diff --git a/base_location/i18n/cs.po b/base_location/i18n/cs.po new file mode 100644 index 000000000000..cda268004035 --- /dev/null +++ b/base_location/i18n/cs.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Seskupit podle" diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po new file mode 100644 index 000000000000..39bd1468f7c7 --- /dev/null +++ b/base_location/i18n/da.po @@ -0,0 +1,253 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: da\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "By" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +#, fuzzy +msgid "City ID" +msgstr "By" + +#. module: base_location +#: 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_city_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land." + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Delstat" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,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 +msgid "ZIP Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" + +#, fuzzy +#~ msgid "City of Address" +#~ msgstr "Postnummer" + +#~ msgid "Country state" +#~ msgstr "Delstat/region" + +#~ msgid "Group By" +#~ msgstr "Gruppér efter" + +#~ msgid "The official code for the city" +#~ msgstr "Postnummer" diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po new file mode 100644 index 000000000000..0bd71d2d0770 --- /dev/null +++ b/base_location/i18n/de.po @@ -0,0 +1,287 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2022-11-04 14:44+0000\n" +"Last-Translator: Maria Sparenberg \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" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Brüssel" + +#. 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 "" +"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.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities +msgid "Cities" +msgstr "Städte" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Stadt" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "Stadt-ID" + +#. module: base_location +#: 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 "Stadt-Vervollständigung" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: base_location +#: 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_city_zip__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "Standorte" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "PLZ suchen" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Bundesland" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Die Stadt des Partners %(partner)s weicht von der des Standorts %(location)s " +"ab." + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Das Land des Partners %(partner)s unterscheidet sich vom dem des Standorts " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Das Bundesland des Partners %(partner)s unterscheidet sich von dem am " +"Standort %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"Die PLZ des Partners %(partner)s unterscheidet sich von dem des Standorts " +"%(location)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 "" +"Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Es gibt bereits eine Stadt mit diesem Namen in diesem Bundesland. Die Stadt " +"muss einen eindeutigen Namen innerhalb des Bundeslands und des Lands haben." + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Es gibt bereits eine PLZ mit diesem Code in dieser Stadt. Die PLZ muss " +"innerhalb der Stadt eindeutig sein." + +#. module: base_location +#: 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 +msgid "ZIP Location" +msgstr "Standort-PLZ" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "PLZ" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "PLZ" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "PLZ der Stadt" + +#~ msgid "City of Address" +#~ msgstr "Stadt" + +#~ 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 "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 new file mode 100644 index 000000000000..8cf3ffc4f7cc --- /dev/null +++ b/base_location/i18n/el_GR.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: el_GR\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Ομαδοποίηση Ανά" diff --git a/base_location/i18n/en_GB.po b/base_location/i18n/en_GB.po new file mode 100644 index 000000000000..8b91a5f5b193 --- /dev/null +++ b/base_location/i18n/en_GB.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: en_GB\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Group By" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po new file mode 100644 index 000000000000..25cfbdd23db3 --- /dev/null +++ b/base_location/i18n/es.po @@ -0,0 +1,274 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-24 18:00+0000\n" +"PO-Revision-Date: 2020-10-24 20:08+0200\n" +"Last-Translator: Josep M \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: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 2.3\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Bruselas" + +#. 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 "" +"Marca esta opción para asegurarte que cada dirección creada en el país tiene " +"una \"ciudad\" elegida de la lista de ciudades del país." + +#. module: base_location +#: 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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Ciudad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "ID Ciudad" + +#. module: base_location +#: 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_city_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 +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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Muestra y administra la lista de todas las ciudades que pueden ser \n" +"asignadas a sus contactos. Tenga en cuenta que en cada país se puede\n" +"establecer separadamente una opción para forzar que cualquier dirección\n" +"de ese país tenga que tener la ciudad rellenada." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Forzar ciudades" + +#. module: base_location +#: 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_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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Completado de ubicación" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Ubicaciones" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Buscar código postal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Provincia" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"La ciudad del contacto %(partner)s difiere de la de la ubicación %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"El país del contacto %(partner)s difiere del de la ubicación %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"La provincia del contacto %(partner)s difiere de la de la ubicación " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"El código postal del contacto %(partner)s difiere del de la ubicación " +"%(location)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 "" +"Utilice el nombre de ciudad o el código postal para buscar la ubicación" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Tiene ya una ciudad con ese nombre en la misma provincia. La ciudad debe " +"tener un nombre único para la misma provincia y país." + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Ya tiene ese código postal en la misma ciudad. El código postal debe ser " +"único para una misma ciudad." + +#. module: base_location +#: 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 "Ubicación" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "C.P." + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "CPs" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "CPs en la ciudad" + +#~ msgid "City of Address" +#~ msgstr "Ciudad de la dirección" + +#~ msgid "Country state" +#~ msgstr "Provincia" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" + +#~ msgid "Latitude" +#~ msgstr "Latitud" + +#~ msgid "Longitude" +#~ msgstr "Longitud" + +#~ 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 new file mode 100644 index 000000000000..551867cb2e18 --- /dev/null +++ b/base_location/i18n/es_AR.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_AR\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_CL.po b/base_location/i18n/es_CL.po new file mode 100644 index 000000000000..72949365919a --- /dev/null +++ b/base_location/i18n/es_CL.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_CL\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_CO.po b/base_location/i18n/es_CO.po new file mode 100644 index 000000000000..e3fbe7ebce55 --- /dev/null +++ b/base_location/i18n/es_CO.po @@ -0,0 +1,249 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +# JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"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" +"Language: es_CO\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Ciudad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +#, fuzzy +msgid "City ID" +msgstr "Ciudad" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" + +#, fuzzy +#~ msgid "City of Address" +#~ 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 new file mode 100644 index 000000000000..f150916bd510 --- /dev/null +++ b/base_location/i18n/es_CR.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_CR\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_DO.po b/base_location/i18n/es_DO.po new file mode 100644 index 000000000000..79e712d616c9 --- /dev/null +++ b/base_location/i18n/es_DO.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_DO\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_EC.po b/base_location/i18n/es_EC.po new file mode 100644 index 000000000000..922081fc5ffc --- /dev/null +++ b/base_location/i18n/es_EC.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_EC\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_MX.po b/base_location/i18n/es_MX.po new file mode 100644 index 000000000000..79e474cf405a --- /dev/null +++ b/base_location/i18n/es_MX.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_MX\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_PE.po b/base_location/i18n/es_PE.po new file mode 100644 index 000000000000..2aacd99ed2cf --- /dev/null +++ b/base_location/i18n/es_PE.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_PE\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupado por" diff --git a/base_location/i18n/es_PY.po b/base_location/i18n/es_PY.po new file mode 100644 index 000000000000..b170fe860495 --- /dev/null +++ b/base_location/i18n/es_PY.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_PY\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupado por" diff --git a/base_location/i18n/es_VE.po b/base_location/i18n/es_VE.po new file mode 100644 index 000000000000..a884c9a36bd3 --- /dev/null +++ b/base_location/i18n/es_VE.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: es_VE\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/et.po b/base_location/i18n/et.po new file mode 100644 index 000000000000..e7ff012dfc53 --- /dev/null +++ b/base_location/i18n/et.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: et\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Rühmitamine" diff --git a/base_location/i18n/eu.po b/base_location/i18n/eu.po new file mode 100644 index 000000000000..78fa50772833 --- /dev/null +++ b/base_location/i18n/eu.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: eu\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Group By" diff --git a/base_location/i18n/fa.po b/base_location/i18n/fa.po new file mode 100644 index 000000000000..7aa6e6ccb64a --- /dev/null +++ b/base_location/i18n/fa.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "شناسه" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "گروه‌بندی برمبنای" diff --git a/base_location/i18n/fi.po b/base_location/i18n/fi.po new file mode 100644 index 000000000000..5ed7d622aae8 --- /dev/null +++ b/base_location/i18n/fi.po @@ -0,0 +1,238 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: fi\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Maa" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivittänyt" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Tila" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po new file mode 100644 index 000000000000..94520929a807 --- /dev/null +++ b/base_location/i18n/fr.po @@ -0,0 +1,277 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +# Nicolas JEUDY , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-03 20:26+0000\n" +"PO-Revision-Date: 2023-06-02 15:08+0000\n" +"Last-Translator: Victor Champonnois \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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Bruxelles" + +#. 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 "" +"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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Ville" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "Ville" + +#. module: base_location +#: 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_city_zip +msgid "City/locations completion object" +msgstr "Objet de compléte de Ville / lieux" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Pays" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Intitulé" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Affiche et gère la liste de toutes les villes qui peuvent être assignées au\n" +" contact. Notez que cette option peut être définie sur chaque " +"pays\n" +" séparément." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Appliquer la ville" + +#. module: base_location +#: 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_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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Complétion de la localisation" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Localisation" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Rechercher ville" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Etat" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"La ville du contact %(partner)s diffèrent de celle de la localisation " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Le pays du contact %(partner)s diffèrent de ce lui de la localisation " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"L'état du contact %(partner)s diffèrent de ce lui de la localisation " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"Le code ZIP du contact %(partner)s diffèrent de ce lui de la localisation " +"%(location)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 "Utilisez le nom de la ville ou le zip lors des recherches" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Il y a déjà une ville avec le même nom dans le même état. La ville doit " +"avoir un nom unique parmi l'état et le pays" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Il y a déjà un code ZIP avec le même nom dans le même état. Le code ZIP doit " +"avoir un nom unique parmi l'état et le pays" + +#. module: base_location +#: 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 +msgid "ZIP Location" +msgstr "Code postal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "Code postal" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "Code postaux" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "Code postaux dans cette ville" + +#, fuzzy +#~ msgid "City of Address" +#~ 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 "The official code for the city" +#~ msgstr "Code officiel de la ville" diff --git a/base_location/i18n/fr_BE.po b/base_location/i18n/fr_BE.po new file mode 100644 index 000000000000..723c34a3e2b8 --- /dev/null +++ b/base_location/i18n/fr_BE.po @@ -0,0 +1,237 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-09-21 15:40+0000\n" +"Last-Translator: \"Guillaume Vandamme (ACSONE)\" \n" +"Language-Team: none\n" +"Language: fr_BE\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" +"X-Generator: Weblate 4.17\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Bruxelles" + +#. 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Encodage automatique via CP ou localité" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/fr_CA.po b/base_location/i18n/fr_CA.po new file mode 100644 index 000000000000..8ab9d35eb695 --- /dev/null +++ b/base_location/i18n/fr_CA.po @@ -0,0 +1,239 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: fr_CA\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "Identifiant" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/fr_CH.po b/base_location/i18n/fr_CH.po new file mode 100644 index 000000000000..203974b331ba --- /dev/null +++ b/base_location/i18n/fr_CH.po @@ -0,0 +1,239 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: fr_CH\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/gl.po b/base_location/i18n/gl.po new file mode 100644 index 000000000000..6d5430f37bdd --- /dev/null +++ b/base_location/i18n/gl.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: gl\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/gl_ES.po b/base_location/i18n/gl_ES.po new file mode 100644 index 000000000000..746c10f2efea --- /dev/null +++ b/base_location/i18n/gl_ES.po @@ -0,0 +1,239 @@ +# 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" +"Language: gl_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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/he.po b/base_location/i18n/he.po new file mode 100644 index 000000000000..c2d662650193 --- /dev/null +++ b/base_location/i18n/he.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: he\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "מזהה" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "קבץ לפי" diff --git a/base_location/i18n/hr.po b/base_location/i18n/hr.po new file mode 100644 index 000000000000..bd12598fee4f --- /dev/null +++ b/base_location/i18n/hr.po @@ -0,0 +1,255 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2023-06-06 13:09+0000\n" +"Last-Translator: Bole \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" +"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" +"X-Generator: Weblate 4.17\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Brisel" + +#. 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 "" +"Označite ovdje da osigurate da svaka adresa kreirana u toj držai ima odabran " +"'Grad' iz liste gradova u državi." + +#. module: base_location +#: 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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Grad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "ID Grada" + +#. module: base_location +#: 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 gradova" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city_zip +msgid "City/locations completion object" +msgstr "Objekt popunjavanja za Gradove/Lokacije" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Tvrtke" + +#. 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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Država" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Prikaži u upravljaj listom gradova koji mogu biti dodijeljeni\n" +" vašim partnerima. Napomena ova opcija može biti " +"postavljena\n" +" pojedinačno na svakoj državi\n" +" radi forsiranja adrese sa odabirom grada." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Obavezni gradovi" + +#. module: base_location +#: 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_city_zip____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_location +#: 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_city_zip__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Popunjavanje lokacija" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Lokacije" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Pretraži poštanski broj" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Županija" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Država partnera %(partner)s razlikuje se od one na lokaciji %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Regija partnera %(partner)s razlikuje se od regije na lokaciji %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"Poštanski broj %(partner)s razlikuje se od onog na lokaciji %(location)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 "Koristite naziv ili šifru grada za pretraživanje" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Već postoji grad ovog imena u istoj regiji. Grad mora imati jedinstveni " +"naziv unutar regije ili države" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Poštanski brojevi u ovom gradu" + +#~ msgid "Group By" +#~ msgstr "Grupiraj po" diff --git a/base_location/i18n/hr_HR.po b/base_location/i18n/hr_HR.po new file mode 100644 index 000000000000..20e815f9b6c9 --- /dev/null +++ b/base_location/i18n/hr_HR.po @@ -0,0 +1,255 @@ +# 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 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" +"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" +"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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Grad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +#, fuzzy +msgid "City ID" +msgstr "Grad" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Država" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Oblast/Županija" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,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 +msgid "ZIP Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" + +#, fuzzy +#~ msgid "City of Address" +#~ msgstr "Šifra grada" + +#~ msgid "Country state" +#~ msgstr "Oblast/Županija" + +#~ msgid "Group By" +#~ msgstr "Prupiraj po" + +#~ 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 new file mode 100644 index 000000000000..f43507ab12c8 --- /dev/null +++ b/base_location/i18n/hu.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: hu\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_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_city_zip__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Csoportosítás..." diff --git a/base_location/i18n/id.po b/base_location/i18n/id.po new file mode 100644 index 000000000000..3cea25d40020 --- /dev/null +++ b/base_location/i18n/id.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Dikelompokan berdasarkan .." diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po new file mode 100644 index 000000000000..ccf7ff482f4e --- /dev/null +++ b/base_location/i18n/it.po @@ -0,0 +1,269 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2023-12-27 09:37+0000\n" +"Last-Translator: mymage \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" +"X-Generator: Weblate 4.17\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Bruxelles" + +#. 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 "" +"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 +#: model:ir.ui.menu,name:base_location.locations_menu_cities +msgid "Cities" +msgstr "Città" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Città" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "ID città" + +#. module: base_location +#: 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_city_zip +msgid "City/locations completion object" +msgstr "Oggetto completamento città/luoghi" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Nazione" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +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 visualizzato" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Mostra e gestisci la lista delle città che possono essere assegnate ai\n" +" tuoi partner. Nota che un'opzione può essere impostata per ogni " +"Nazione\n" +" separatamente\n" +" per imporre qualsiasi indirizzo di quella Nazione ad avere una " +"città in questa lista." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Imponi città" + +#. module: base_location +#: 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_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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Completamento luogo" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Luoghi" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Ricerca CAP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Provincia" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"La città del partner %(partner)s è diversa da quella del luogo %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"La nazione del partner %(partner)s è diversa dal quella del luogo " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Lo stato del partner %(partner)s è diverso da quello del luogo %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"Il CAP del partner %(partner)s è diversa da quella del luogo %(location)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 CAP per cercare la posizione" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Nella stessa provincia è già presente una città con quel nome. All'interno " +"della provincia e nazione la città deve avere un nome univoco" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Nella stessa città è già presente un identico CAP. All'interno di una città " +"il codice deve essere univoco" + +#. module: base_location +#: 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 +msgid "ZIP Location" +msgstr "CAP luogo" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "CAP" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "CAP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "CAP in questa città" + +#, fuzzy +#~ msgid "City of Address" +#~ msgstr "Codice Città" + +#~ msgid "Country state" +#~ msgstr "Provincia Paese" + +#~ msgid "Group By" +#~ msgstr "Raggruppa per" + +#~ 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 new file mode 100644 index 000000000000..bb4a0dac5e82 --- /dev/null +++ b/base_location/i18n/ja.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "作成日" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "グループ化" diff --git a/base_location/i18n/ko.po b/base_location/i18n/ko.po new file mode 100644 index 000000000000..3fa8c35cb875 --- /dev/null +++ b/base_location/i18n/ko.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "작성일" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "그룹화" diff --git a/base_location/i18n/lt.po b/base_location/i18n/lt.po new file mode 100644 index 000000000000..8b9356cbe08f --- /dev/null +++ b/base_location/i18n/lt.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupuoti pagal" diff --git a/base_location/i18n/lt_LT.po b/base_location/i18n/lt_LT.po new file mode 100644 index 000000000000..88e35b2d7ea1 --- /dev/null +++ b/base_location/i18n/lt_LT.po @@ -0,0 +1,240 @@ +# 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" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/lv.po b/base_location/i18n/lv.po new file mode 100644 index 000000000000..b3c1163438b2 --- /dev/null +++ b/base_location/i18n/lv.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupēt pēc" diff --git a/base_location/i18n/mk.po b/base_location/i18n/mk.po new file mode 100644 index 000000000000..667153e3ba39 --- /dev/null +++ b/base_location/i18n/mk.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Групирај по" diff --git a/base_location/i18n/mn.po b/base_location/i18n/mn.po new file mode 100644 index 000000000000..b5f9f1c999c1 --- /dev/null +++ b/base_location/i18n/mn.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: mn\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Бүлэглэх" diff --git a/base_location/i18n/nb.po b/base_location/i18n/nb.po new file mode 100644 index 000000000000..521936a0d7b2 --- /dev/null +++ b/base_location/i18n/nb.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: nb\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupper etter" diff --git a/base_location/i18n/nb_NO.po b/base_location/i18n/nb_NO.po new file mode 100644 index 000000000000..9558c6722b2d --- /dev/null +++ b/base_location/i18n/nb_NO.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: nb_NO\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Gruppe laget av" diff --git a/base_location/i18n/nl.po b/base_location/i18n/nl.po new file mode 100644 index 000000000000..fbe1c45d952e --- /dev/null +++ b/base_location/i18n/nl.po @@ -0,0 +1,255 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2020-03-10 15:13+0000\n" +"Last-Translator: Yenthe V.G \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Brussel" + +#. 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 "" +"Vink deze optie aan om te garanderen dat elk adres aangemaakt in dit land " +"een 'gemeente' heeft gekozen uit de gemeentes van de landen lijst." + +#. module: base_location +#: 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 "Gemeentes" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Plaats" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "Gemeente ID" + +#. module: base_location +#: 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 "Gemeente aanvulling" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city_zip +msgid "City/locations completion object" +msgstr "Gemeente/locatie voltooiïngsobjects" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. 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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Locatie aanvullen" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Locaties" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Zoek postcode" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"De gemeente van de klant %(partner)s komt niet overeen met de locatie " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Het land van de klant %(partner)s komt niet overeen met de locatie " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"De provincie van de relatie %(partner)s komt niet overeen met de locatie " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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 naam van de gemeente of de postcode om deze locatie te zoeken" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"U heeft al een gemeente met deze naam in dezelfde provincie. De gemeente " +"moet een unieke naam hebben binnen de provincie en het land" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"U heeft al een postcode met deze code in dezelfde gemeente. De postcode moet " +"uniek zijn binnen een gemeente" + +#. module: base_location +#: 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 "Locatie postcode" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "Postcode" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "Postcodes" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "Postcodes in deze gemeente" + +#~ msgid "Group By" +#~ msgstr "Groepeer op" diff --git a/base_location/i18n/nl_BE.po b/base_location/i18n/nl_BE.po new file mode 100644 index 000000000000..aa46adc79b03 --- /dev/null +++ b/base_location/i18n/nl_BE.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: nl_BE\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Groeperen op" diff --git a/base_location/i18n/nl_NL.po b/base_location/i18n/nl_NL.po new file mode 100644 index 000000000000..b6bae089f12b --- /dev/null +++ b/base_location/i18n/nl_NL.po @@ -0,0 +1,258 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Plaats" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +#, fuzzy +msgid "City ID" +msgstr "Plaats" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "Locaties" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Staat/Provincie" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,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,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" + +#, fuzzy +#~ msgid "City of Address" +#~ msgstr "Plaatscode" + +#~ msgid "Group By" +#~ msgstr "Groepeer op" + +#~ msgid "Latitude" +#~ msgstr "Breedtegraad" + +#~ msgid "Locations Management" +#~ msgstr "Locatiebeheer" + +#~ msgid "Longitude" +#~ msgstr "Lengtegraad" diff --git a/base_location/i18n/pl.po b/base_location/i18n/pl.po new file mode 100644 index 000000000000..91bd48f4da67 --- /dev/null +++ b/base_location/i18n/pl.po @@ -0,0 +1,243 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Pogrupuj wg" diff --git a/base_location/i18n/pt.po b/base_location/i18n/pt.po new file mode 100644 index 000000000000..2f6a0e8f0866 --- /dev/null +++ b/base_location/i18n/pt.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: pt\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/pt_BR.po b/base_location/i18n/pt_BR.po new file mode 100644 index 000000000000..1f763af82341 --- /dev/null +++ b/base_location/i18n/pt_BR.po @@ -0,0 +1,284 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2023-10-31 14:38+0000\n" +"Last-Translator: Adriano Prado \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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Bruxelas" + +#. 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 "" +"Marque esta caixa para garantir que todos os endereços criados nesse país " +"tenham uma 'Cidade' escolhida na lista de cidades do país." + +#. module: base_location +#: 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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Cidade" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "ID da Cidade" + +#. module: base_location +#: 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 cidades" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "Contato" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Exibir e gerenciar a lista de todas as cidades que podem ser atribuídas\n" +" aos registros de seu parceiro. Observe que uma opção pode ser " +"definida em cada país\n" +" separadamente\n" +" para fazer com que qualquer endereço dele tenha uma cidade " +"nesta lista." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Impor Cidades" + +#. module: base_location +#: 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_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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Útima atualização em" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Auto completar as localizações" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Localizações" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Buscar CEP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Estado" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"A cidade do parceiro, %(partner)s, difere da sua localidade %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "O pais do parceiro, %(partner)s, difere da sua localidade %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"O estado do parceiro, %(partner)s, difere da sua localidade %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "O CEP do parceiro %(partner)s difere daquele do local %(location)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 "Use o nome da cidade ou o CEP para pesquisar a localização" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Você já tem uma cidade com esse nome no mesmo estado. A cidade deve ter um " +"nome exclusivo dentro do estado e do país" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Você já tem um CEP com esse código na mesma cidade. O CEP deve ser único " +"dentro da cidade" + +#. module: base_location +#: 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 +msgid "ZIP Location" +msgstr "Localização do CEP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "Cep" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "Ceps" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "Ceps desta cidade" + +#~ msgid "City of Address" +#~ msgstr "Cidade do Endereço" + +#~ 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 "" +#~ "Exiba e gerencie a lista de todas as cidades que podem ser atribuídas " +#~ "aos\n" +#~ " seus parceiros. Observe que é possível configurar cada país " +#~ "para fazer\n" +#~ " com que qualquer endereço dele tenha uma cidade nesta lista." + +#~ msgid "Country state" +#~ msgstr "Estado" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" + +#~ msgid "Latitude" +#~ msgstr "Latitude" + +#~ msgid "Longitude" +#~ msgstr "Longitude" + +#~ 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 new file mode 100644 index 000000000000..2982364a8fae --- /dev/null +++ b/base_location/i18n/pt_PT.po @@ -0,0 +1,251 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: pt_PT\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Cidade" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +#, fuzzy +msgid "City ID" +msgstr "Cidade" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Estado" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,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 +msgid "ZIP Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" + +#, fuzzy +#~ msgid "City of Address" +#~ msgstr "Código da Cidade" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" + +#~ 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 new file mode 100644 index 000000000000..50feea0daa4f --- /dev/null +++ b/base_location/i18n/ro.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupează după" diff --git a/base_location/i18n/ru.po b/base_location/i18n/ru.po new file mode 100644 index 000000000000..9871d6a03362 --- /dev/null +++ b/base_location/i18n/ru.po @@ -0,0 +1,240 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Создан" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/sk.po b/base_location/i18n/sk.po new file mode 100644 index 000000000000..63e72cc1d0ad --- /dev/null +++ b/base_location/i18n/sk.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Zoskupiť podľa" diff --git a/base_location/i18n/sl.po b/base_location/i18n/sl.po new file mode 100644 index 000000000000..dc2c51c34f6a --- /dev/null +++ b/base_location/i18n/sl.po @@ -0,0 +1,255 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2023-04-11 13:22+0000\n" +"Last-Translator: Matjaz Mozetic \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" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Kraj" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +#, fuzzy +msgid "City ID" +msgstr "Kraj" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "Stik" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Država" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Zvezna država" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,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 +msgid "ZIP Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" + +#, fuzzy +#~ msgid "City of Address" +#~ msgstr "Koda kraja" + +#~ msgid "Country state" +#~ msgstr "Zvezna država" + +#~ msgid "Group By" +#~ msgstr "Združi po" + +#~ 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 new file mode 100644 index 000000000000..00d7fe992863 --- /dev/null +++ b/base_location/i18n/sr.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupiši po" diff --git a/base_location/i18n/sr@latin.po b/base_location/i18n/sr@latin.po new file mode 100644 index 000000000000..27f33d6833b1 --- /dev/null +++ b/base_location/i18n/sr@latin.po @@ -0,0 +1,243 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: base_location +#: 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_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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupisano po" diff --git a/base_location/i18n/sv.po b/base_location/i18n/sv.po new file mode 100644 index 000000000000..ab74443cd668 --- /dev/null +++ b/base_location/i18n/sv.po @@ -0,0 +1,258 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2024-06-05 16:35+0000\n" +"Last-Translator: jakobkrabbe \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: base_location +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "Bryssel" + +#. 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 "" +"Markera den här rutan för att se till att varje adress som skapas i det " +"landet har en \"City\" som valts i listan över landets städer." + +#. module: base_location +#: 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 "Städer" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "Stad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "Stadens ID" + +#. module: base_location +#: 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 "Färdigställande av stad" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_city_zip +msgid "City/locations completion object" +msgstr "Kompletteringsobjekt för stad/ort" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Företag" + +#. 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_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" +"Visa och hantera listan över alla städer som kan tilldelas till\n" +" dina partnerposter. Observera att ett alternativ kan ställas in " +"för varje land\n" +" separat\n" +" för att tvinga alla adresser att ha en stad i den här listan." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Verkställ städer" + +#. module: base_location +#: 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_city_zip____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_location +#: 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_city_zip__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "Plats färdigställande" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Locations" +msgstr "Platser" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" +msgstr "Sök zip" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "Stat" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "Partnerns stad %(partner)s skiljer sig från den på plats %(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Landet för partnern %(partner)s skiljer sig från landet på platsen " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" +"Delstaten för partnern %(partner)s skiljer sig från den på platsen " +"%(location)s" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(location)s" +msgstr "" +"Partnerns %(partner)s postnummer skiljer sig från den på plats %(location)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 "Använd stadsnamnet eller postnumret för att söka efter platsen" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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 "" +"Du har redan en stad med det namnet i samma delstat. Staden måste ha ett " +"unikt namn inom sin delstat och sitt land" + +#. module: base_location +#: model:ir.model.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" +msgstr "" +"Du har redan ett postnummer med den koden i samma stad. Postnumret måste " +"vara unikt inom sin stad" + +#. module: base_location +#: 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 +msgid "ZIP Location" +msgstr "Postnummer Plats" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "Dragkedja" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: 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 "Blixtlås" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "Zips i den här staden" + +#~ msgid "Group By" +#~ msgstr "Gruppera efter" diff --git a/base_location/i18n/th.po b/base_location/i18n/th.po new file mode 100644 index 000000000000..a05d0b37fab0 --- /dev/null +++ b/base_location/i18n/th.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "รหัส" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "จัดกลุ่มโดย" diff --git a/base_location/i18n/tr.po b/base_location/i18n/tr.po new file mode 100644 index 000000000000..db69e0e1b97d --- /dev/null +++ b/base_location/i18n/tr.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: tr\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" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Grupla" diff --git a/base_location/i18n/tr_TR.po b/base_location/i18n/tr_TR.po new file mode 100644 index 000000000000..a961c513159a --- /dev/null +++ b/base_location/i18n/tr_TR.po @@ -0,0 +1,239 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: base_location +#: 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_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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "Kimlik" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/uk.po b/base_location/i18n/uk.po new file mode 100644 index 000000000000..547caf113a21 --- /dev/null +++ b/base_location/i18n/uk.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Групувати за" diff --git a/base_location/i18n/vi.po b/base_location/i18n/vi.po new file mode 100644 index 000000000000..b3417e757b5e --- /dev/null +++ b/base_location/i18n/vi.po @@ -0,0 +1,241 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_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_city_zip__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "Group By" diff --git a/base_location/i18n/vi_VN.po b/base_location/i18n/vi_VN.po new file mode 100644 index 000000000000..eff682a47714 --- /dev/null +++ b/base_location/i18n/vi_VN.po @@ -0,0 +1,239 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_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_city_zip__display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_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_city_zip__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "" diff --git a/base_location/i18n/zh_CN.po b/base_location/i18n/zh_CN.po new file mode 100644 index 000000000000..eda8990e5e47 --- /dev/null +++ b/base_location/i18n/zh_CN.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "分组" diff --git a/base_location/i18n/zh_TW.po b/base_location/i18n/zh_TW.po new file mode 100644 index 000000000000..c2acb2022364 --- /dev/null +++ b/base_location/i18n/zh_TW.po @@ -0,0 +1,242 @@ +# 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 11.0\n" +"Report-Msgid-Bugs-To: \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" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: 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.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,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city +#: model:ir.model.fields,field_description:base_location.field_res_users__city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__city_id +#: model:ir.model.fields,field_description:base_location.field_res_users__city_id +msgid "City ID" +msgstr "" + +#. module: base_location +#: 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_city_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,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__country_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__country_id +#: model:ir.model.fields,field_description:base_location.field_res_users__country_id +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: 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_city_zip__create_date +msgid "Created on" +msgstr "建立於" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_location +#: 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\n" +" separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" + +#. module: base_location +#: 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_city_zip__id +msgid "ID" +msgstr "編號" + +#. module: base_location +#: 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_city_zip__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: base_location +#: 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 +msgid "Locations" +msgstr "" + +#. module: base_location +#: 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_city_zip__state_id +#: model:ir.model.fields,field_description:base_location.field_res_partner__state_id +#: model:ir.model.fields,field_description:base_location.field_res_users__state_id +msgid "State" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The city of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The country of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The state of the partner %(partner)s differs from that in location " +"%(location)s" +msgstr "" + +#. module: base_location +#. odoo-python +#: code:addons/base_location/models/res_partner.py:0 +#, python-format +msgid "" +"The zip of the partner %(partner)s differs from that in location %(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.constraint,message:base_location.constraint_res_city_name_state_country_uniq +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.constraint,message:base_location.constraint_res_city_zip_name_city_uniq +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,field_description:base_location.field_res_city_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 "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner__zip +#: model:ir.model.fields,field_description:base_location.field_res_users__zip +#: 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.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 "Group By" +#~ msgstr "分組方式" diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py new file mode 100644 index 000000000000..1fb23520f1d6 --- /dev/null +++ b/base_location/models/__init__.py @@ -0,0 +1,6 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import res_city_zip +from . import res_partner +from . import res_company +from . import res_city diff --git a/base_location/models/res_city.py b/base_location/models/res_city.py new file mode 100644 index 000000000000..34ac653c69c6 --- /dev/null +++ b/base_location/models/res_city.py @@ -0,0 +1,20 @@ +# 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..d926524038d3 --- /dev/null +++ b/base_location/models/res_city_zip.py @@ -0,0 +1,55 @@ +# 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_names_search = ["name", "city_id", "state_id", "country_id"] + + name = fields.Char("ZIP", required=True) + city_id = fields.Many2one( + "res.city", + "City", + required=True, + auto_join=True, + ondelete="cascade", + index=True, + ) + state_id = fields.Many2one(related="city_id.state_id") + country_id = fields.Many2one(related="city_id.country_id") + + _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.depends( + "name", + "city_id", + "city_id.name", + "city_id.state_id.name", + "city_id.state_id", + "city_id.country_id", + "city_id.country_id.name", + ) + def _compute_display_name(self): + """Get the proper display name formatted as 'ZIP, name, state, country'.""" + for rec in self: + state_name = ( + rec.city_id.state_id.name + ", " if rec.city_id.state_id else "" + ) + country_name = rec.city_id.country_id.name if rec.city_id.country_id else "" + rec.display_name = ( + f"{rec.name}, {rec.city_id.name}, " f"{state_name}{country_name}" + ) diff --git a/base_location/models/res_company.py b/base_location/models/res_company.py new file mode 100644 index 000000000000..d70487e8f855 --- /dev/null +++ b/base_location/models/res_company.py @@ -0,0 +1,81 @@ +# 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 + + +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 ID", + ) + zip_id = fields.Many2one( + "res.city.zip", + string="ZIP Location", + compute="_compute_address", + inverse="_inverse_zip_id", + help="Use the city name or the zip code to search the location", + ) + country_enforce_cities = fields.Boolean( + related="partner_id.country_id.enforce_cities" + ) + + def _get_company_address_field_names(self): + """Add to the list of field to populate in _compute_address the new + ZIP field + the city that is not handled at company level in + `base_address_extended`. + """ + res = super()._get_company_address_field_names() + res += ["city_id", "zip_id"] + return res + + def _inverse_city_id(self): + for company in self.with_context(skip_check_zip=True): + company.partner_id.city_id = company.city_id + + def _inverse_zip_id(self): + for company in self.with_context(skip_check_zip=True): + company.partner_id.zip_id = company.zip_id + + def _inverse_state(self): + self = self.with_context(skip_check_zip=True) + return super()._inverse_state() + + def _inverse_country(self): + self = self.with_context(skip_check_zip=True) + return super()._inverse_country() + + @api.onchange("zip_id") + def _onchange_zip_id(self): + if self.zip_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): + if self.state_id.country_id: + self.country_id = self.state_id.country_id.id diff --git a/base_location/models/res_partner.py b/base_location/models/res_partner.py new file mode 100644 index 000000000000..18fd671fe113 --- /dev/null +++ b/base_location/models/res_partner.py @@ -0,0 +1,168 @@ +# 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 lxml import etree + +from odoo import api, fields, models +from odoo.exceptions import ValidationError + + +class ResPartner(models.Model): + _inherit = "res.partner" + + zip_id = fields.Many2one( + comodel_name="res.city.zip", + string="ZIP Location", + index=True, + compute="_compute_zip_id", + readonly=False, + store=True, + ) + city_id = fields.Many2one( + index=True, # add index for performance + compute="_compute_city_id", + readonly=False, + store=True, + ) + city = fields.Char(compute="_compute_city", readonly=False, store=True) + zip = fields.Char(compute="_compute_zip", readonly=False, store=True) + country_id = fields.Many2one( + compute="_compute_country_id", readonly=False, store=True + ) + state_id = fields.Many2one(compute="_compute_state_id", readonly=False, store=True) + + @api.depends("state_id", "country_id", "city_id", "zip") + def _compute_zip_id(self): + """Empty the zip auto-completion field if data mismatch when on UI.""" + for record in self.filtered("zip_id"): + fields_map = { + "zip": "name", + "city_id": "city_id", + "state_id": "state_id", + "country_id": "country_id", + } + for rec_field, zip_field in fields_map.items(): + if ( + record[rec_field] + and record[rec_field] != record._origin[rec_field] + and record[rec_field] != record.zip_id[zip_field] + ): + record.zip_id = False + break + + @api.depends("zip_id") + def _compute_city_id(self): + if hasattr(super(), "_compute_city_id"): + return super()._compute_city_id() # pragma: no cover + for record in self: + if record.zip_id: + record.city_id = record.zip_id.city_id + elif not record.country_enforce_cities: + record.city_id = False + + @api.depends("zip_id") + def _compute_city(self): + if hasattr(super(), "_compute_city"): + return super()._compute_city() # pragma: no cover + for record in self: + if record.zip_id: + record.city = record.zip_id.city_id.name + + @api.depends("zip_id") + def _compute_zip(self): + if hasattr(super(), "_compute_zip"): + return super()._compute_zip() # pragma: no cover + for record in self: + if record.zip_id: + record.zip = record.zip_id.name + + @api.depends("zip_id", "state_id") + def _compute_country_id(self): + if hasattr(super(), "_compute_country_id"): + return super()._compute_country_id() # pragma: no cover + for record in self: + if record.zip_id.city_id.country_id: + record.country_id = record.zip_id.city_id.country_id + elif record.state_id: + record.country_id = record.state_id.country_id + + @api.depends("zip_id") + def _compute_state_id(self): + if hasattr(super(), "_compute_state_id"): + return super()._compute_state_id() # pragma: no cover + for record in self: + state = record.zip_id.city_id.state_id + if state and record.state_id != state: + record.state_id = record.zip_id.city_id.state_id + + @api.constrains("zip_id", "country_id", "city_id", "state_id", "zip") + def _check_zip(self): + if self.env.context.get("skip_check_zip"): + return + for rec in self: + if not rec.zip_id: + continue + error_dict = {"partner": rec.name, "location": rec.zip_id.name} + if rec.zip_id.city_id.country_id != rec.country_id: + raise ValidationError( + self.env._( + "The country of the partner %(partner)s differs from that in " + "location %(location)s", + **error_dict, + ) + ) + if rec.zip_id.city_id.state_id != rec.state_id: + raise ValidationError( + self.env._( + "The state of the partner %(partner)s differs from that in " + "location %(location)s", + **error_dict, + ) + ) + if rec.zip_id.city_id != rec.city_id: + raise ValidationError( + self.env._( + "The city of the partner %(partner)s differs from that in " + "location %(location)s", + **error_dict, + ) + ) + if rec.zip_id.name != rec.zip: + raise ValidationError( + self.env._( + "The zip of the partner %(partner)s differs from that in " + "location %(location)s", + **error_dict, + ) + ) + + def _zip_id_domain(self): + return """ + [ + ("city_id", "=?", city_id), + ("city_id.country_id", "=?", country_id), + ("city_id.state_id", "=?", state_id), + ] + """ + + @api.model + def _fields_view_get_address(self, arch): + # We want to use a domain that requires city_id to be on the view + # but we can't add it directly there, otherwise _fields_view_get_address + # in base_address_extended won't do its magic, as it immediately returns + # if city_id is already in there. On the other hand, if city_id is not in the + # views, odoo won't let us use it in zip_id's domain. + # For this reason we need to set the domain here. + arch = super()._fields_view_get_address(arch) + doc = etree.fromstring(arch) + for node in doc.xpath("//field[@name='zip_id']"): + node.attrib["domain"] = self._zip_id_domain() + return etree.tostring(doc, encoding="unicode") + + @api.model + def _address_fields(self): + """Add to the list of address fields the new ZIP one, but also the city that is + not added by `base_address_extended`. + """ + return super()._address_fields() + ["zip_id"] diff --git a/base_location/pyproject.toml b/base_location/pyproject.toml new file mode 100644 index 000000000000..4231d0cccb3d --- /dev/null +++ b/base_location/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/base_location/readme/CONFIGURE.md b/base_location/readme/CONFIGURE.md new file mode 100644 index 000000000000..5a3eb5a414b7 --- /dev/null +++ b/base_location/readme/CONFIGURE.md @@ -0,0 +1,9 @@ +1. Go to *Contacts / Configuration / Localization / Cities*. +2. Create a new City. +3. Go to *Contacts / Configuration / Localization / Zips*. +4. 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.md b/base_location/readme/CONTRIBUTORS.md new file mode 100644 index 000000000000..222b63731f98 --- /dev/null +++ b/base_location/readme/CONTRIBUTORS.md @@ -0,0 +1,10 @@ +- Nicolas Bessi (Camptocamp) +- Ignacio Ibeas (Acysos S.L.) +- Pedro M. Baeza \<\> +- Alejandro Santana \<\> +- Sandy Carter \<\> +- Yannick Vaucher \<\> +- Francesco Apruzzese \<\> +- Dave Lasley \<\> +- Aitor Bouzas \<\> +- Khoi (Kien Kim) \<\> diff --git a/base_location/readme/CREDITS.md b/base_location/readme/CREDITS.md new file mode 100644 index 000000000000..b159bddf2621 --- /dev/null +++ b/base_location/readme/CREDITS.md @@ -0,0 +1,5 @@ +- Icon park: Icon http://icon-park.com/icon/location-map-pin-orange3/ + +The migration of this module from 17.0 to 18.0 was financially supported by: + +- Camptocamp. diff --git a/base_location/readme/DESCRIPTION.md b/base_location/readme/DESCRIPTION.md new file mode 100644 index 000000000000..caffc4e62d6e --- /dev/null +++ b/base_location/readme/DESCRIPTION.md @@ -0,0 +1,7 @@ +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.md b/base_location/readme/USAGE.md new file mode 100644 index 000000000000..3cabeff25ac1 --- /dev/null +++ b/base_location/readme/USAGE.md @@ -0,0 +1,4 @@ +1. Access a partner record +2. Fill the field *Location completion* +3. 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 new file mode 100644 index 000000000000..1a11239ed6cd --- /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_cityzip_all","res_city_zip all users","model_res_city_zip",base.group_user,1,0,0,0 +"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/icon.png b/base_location/static/description/icon.png new file mode 100644 index 000000000000..2c8a0a336d1c Binary files /dev/null and b/base_location/static/description/icon.png differ diff --git a/base_location/static/description/icon.svg b/base_location/static/description/icon.svg new file mode 100644 index 000000000000..719430a4c057 --- /dev/null +++ b/base_location/static/description/icon.svg @@ -0,0 +1,243 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/base_location/static/description/index.html b/base_location/static/description/index.html new file mode 100644 index 000000000000..362bdd9f966d --- /dev/null +++ b/base_location/static/description/index.html @@ -0,0 +1,478 @@ + + + + + +Location management (aka Better ZIP) + + + +
+

Location management (aka Better ZIP)

+ + +

Mature License: AGPL-3 OCA/partner-contact Translate me on Weblate Try me on Runboat

+

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 to smash 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

+ +

The migration of this module from 17.0 to 18.0 was financially supported +by:

+
    +
  • Camptocamp.
  • +
+
+
+

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.

+

Current maintainer:

+

pedrobaeza

+

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 new file mode 100644 index 000000000000..9816762b0079 --- /dev/null +++ b/base_location/tests/__init__.py @@ -0,0 +1,3 @@ +# 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 new file mode 100644 index 000000000000..a7b8aa331659 --- /dev/null +++ b/base_location/tests/test_base_location.py @@ -0,0 +1,271 @@ +# Copyright 2015 Yannick Vaucher, Camptocamp SA +# Copyright 2018-2021 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import psycopg2 + +from odoo.exceptions import ValidationError +from odoo.tests import Form, common +from odoo.tools.misc import mute_logger + + +class TestBaseLocation(common.TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + state_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 = cls.env.ref("base.state_ch_vd") + cls.env.ref("base.es").write({"enforce_cities": True}) + cls.company = cls.env.ref("base.main_company") + cls.country_es = cls.env.ref("base.es") + cls.state_bcn = state_obj.create( + {"name": "Barcelona", "code": "08", "country_id": cls.country_es.id} + ) + cls.state_madrid = state_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): + """Test that partner data is filled accodingly""" + partner1 = Form(self.env["res.partner"]) + partner1.zip_id = self.barcelona + 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"}) + company.zip_id = self.lausanne + company._onchange_zip_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): + """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": 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): + """Test inverse fields from res.company""" + company = self.env["res.company"].create({"name": "Test"}) + company.zip_id = self.barcelona.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): + """Test city auto-completion when changing zip in a company""" + company = self.env["res.company"].new({"name": "Test"}) + company.zip_id = self.barcelona + company._onchange_zip_id() + self.assertEqual(company.city_id, self.barcelona.city_id) + + def test_constrains_partner_01(self): + """Test zip_id constraints""" + with self.assertRaises(ValidationError): + self.partner_obj.create( + {"name": "P1", "zip_id": self.barcelona.id, "state_id": False} + ) + with self.assertRaises(ValidationError): + self.partner_obj.create( + {"name": "P1", "zip_id": self.barcelona.id, "country_id": False} + ) + with self.assertRaises(ValidationError): + self.partner_obj.create( + {"name": "P1", "zip_id": self.barcelona.id, "city_id": False} + ) + with self.assertRaises(ValidationError): + self.partner_obj.create( + {"name": "P1", "zip_id": self.barcelona.id, "zip": False} + ) + + def test_writing_company(self): + self.company.zip_id = self.barcelona + + def test_constrains_partner_country(self): + """Test partner country 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.country_id = self.ref("base.ch") + + 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.state_id = self.state_vd.id + + 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, + } + ) + + with self.assertRaises(ValidationError): + partner.city_id = self.city_lausanne + + def test_partner_onchange_country(self): + """Test partner onchange country_id""" + partner = self.partner_obj.new({"name": "TEST", "zip_id": self.lausanne.id}) + partner.country_id = self.env.ref("base.es") + partner._onchange_country_id() + self.assertFalse(partner.zip_id) + + def test_partner_onchange_state(self): + """Test partner onchange state_id""" + partner = Form(self.env["res.partner"]) + partner.zip_id = self.lausanne + partner.state_id = self.state_bcn + self.assertFalse(partner.zip_id) + self.assertEqual(partner.country_id, self.country_es) + + 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_partner_address_field_sync(self): + """Test that zip_id is correctly synced with parent of contact addresses""" + parent = self.env["res.partner"].create( + { + "name": "ACME Inc.", + "is_company": True, + "street": "123 Fake St.", + "city": "Springfield", + "state_id": self.barcelona.state_id.id, + "country_id": self.barcelona.country_id.id, + "zip_id": self.barcelona.id, + } + ) + contact = self.env["res.partner"].create( + { + "name": "John Doe", + "type": "contact", + "parent_id": parent.id, + } + ) + parent.zip_id = self.lausanne + self.assertEqual(contact.zip_id, self.lausanne, "Contact should be synced") + + def test_display_name(self): + """Test if the display_name is stored and computed properly""" + self.assertEqual( + self.lausanne.display_name, + "666, Lausanne, Waadt, " + self.browse_ref("base.ch").name, + ) + + 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, "name": "555"} + + madrid = self.env["res.city.zip"].create(madrid_data) + + found_recs = self.env["res.city.zip"].name_search(name="444") + self.assertEqual(len(found_recs), 1) + 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], self.barcelona.id) + + 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.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.city.zip"].name_search(name="666") + self.assertEqual(len(found_recs), 1) + 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], 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} + ) + + 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/res_city_view.xml b/base_location/views/res_city_view.xml new file mode 100644 index 000000000000..bcd37efd3ec1 --- /dev/null +++ b/base_location/views/res_city_view.xml @@ -0,0 +1,65 @@ + + + + res.city + + + + + + + 1 + + + + + + + + res.city + +
+ + + + + + + + + + + + +
+
+
+ + Cities + ir.actions.act_window + res.city + 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..8e67d2bc31d8 --- /dev/null +++ b/base_location/views/res_city_zip_view.xml @@ -0,0 +1,54 @@ + + + + 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 + tree,form + + + + +
diff --git a/base_location/views/res_company_view.xml b/base_location/views/res_company_view.xml new file mode 100644 index 000000000000..44ad47c7c5be --- /dev/null +++ b/base_location/views/res_company_view.xml @@ -0,0 +1,28 @@ + + + + + res.company.form.city + res.company + + + + + + + + + + + + not country_enforce_cities + + + + + diff --git a/base_location/views/res_country_view.xml b/base_location/views/res_country_view.xml new file mode 100644 index 000000000000..f56f3b37e4ab --- /dev/null +++ b/base_location/views/res_country_view.xml @@ -0,0 +1,30 @@ + + + res.country.search + res.country + + + + + + + + + res.country + + + + + + + + diff --git a/base_location/views/res_partner_view.xml b/base_location/views/res_partner_view.xml new file mode 100644 index 000000000000..a0e17f36d7c5 --- /dev/null +++ b/base_location/views/res_partner_view.xml @@ -0,0 +1,28 @@ + + + + res.partner.zip_id.2 + res.partner + + + + + + + + + + +