Browse Source

Merge pull request #638 from aitorbouzas/12.0-mig-base_location

[12.0 ][MIG] base_location: Migration to 12.0
pull/653/head
Pedro M. Baeza 6 years ago
committed by GitHub
parent
commit
33a878b5ed
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 115
      base_location/README.rst
  2. 3
      base_location/__init__.py
  3. 34
      base_location/__openerp__.py
  4. 13
      base_location/demo/res_city_zip.xml
  5. 221
      base_location/i18n/am.po
  6. 222
      base_location/i18n/ar.po
  7. 215
      base_location/i18n/base_location.pot
  8. 221
      base_location/i18n/bg.po
  9. 222
      base_location/i18n/bs.po
  10. 221
      base_location/i18n/ca.po
  11. 221
      base_location/i18n/cs.po
  12. 221
      base_location/i18n/da.po
  13. 228
      base_location/i18n/de.po
  14. 222
      base_location/i18n/el_GR.po
  15. 222
      base_location/i18n/en_GB.po
  16. 223
      base_location/i18n/es.po
  17. 222
      base_location/i18n/es_AR.po
  18. 222
      base_location/i18n/es_CL.po
  19. 224
      base_location/i18n/es_CO.po
  20. 222
      base_location/i18n/es_CR.po
  21. 222
      base_location/i18n/es_DO.po
  22. 222
      base_location/i18n/es_EC.po
  23. 222
      base_location/i18n/es_ES.po
  24. 222
      base_location/i18n/es_MX.po
  25. 222
      base_location/i18n/es_PE.po
  26. 222
      base_location/i18n/es_PY.po
  27. 222
      base_location/i18n/es_VE.po
  28. 221
      base_location/i18n/et.po
  29. 221
      base_location/i18n/eu.po
  30. 221
      base_location/i18n/fa.po
  31. 221
      base_location/i18n/fi.po
  32. 224
      base_location/i18n/fr.po
  33. 222
      base_location/i18n/fr_CA.po
  34. 222
      base_location/i18n/fr_CH.po
  35. 221
      base_location/i18n/gl.po
  36. 222
      base_location/i18n/gl_ES.po
  37. 221
      base_location/i18n/he.po
  38. 222
      base_location/i18n/hr.po
  39. 223
      base_location/i18n/hr_HR.po
  40. 221
      base_location/i18n/hu.po
  41. 221
      base_location/i18n/id.po
  42. 221
      base_location/i18n/it.po
  43. 221
      base_location/i18n/ja.po
  44. 221
      base_location/i18n/ko.po
  45. 222
      base_location/i18n/lt.po
  46. 223
      base_location/i18n/lt_LT.po
  47. 222
      base_location/i18n/lv.po
  48. 221
      base_location/i18n/mk.po
  49. 221
      base_location/i18n/mn.po
  50. 222
      base_location/i18n/nb.po
  51. 222
      base_location/i18n/nb_NO.po
  52. 221
      base_location/i18n/nl.po
  53. 222
      base_location/i18n/nl_BE.po
  54. 223
      base_location/i18n/nl_NL.po
  55. 223
      base_location/i18n/pl.po
  56. 221
      base_location/i18n/pt.po
  57. 222
      base_location/i18n/pt_BR.po
  58. 222
      base_location/i18n/pt_PT.po
  59. 222
      base_location/i18n/ro.po
  60. 223
      base_location/i18n/ru.po
  61. 221
      base_location/i18n/sk.po
  62. 222
      base_location/i18n/sl.po
  63. 222
      base_location/i18n/sr.po
  64. 223
      base_location/i18n/sr@latin.po
  65. 221
      base_location/i18n/sv.po
  66. 221
      base_location/i18n/th.po
  67. 221
      base_location/i18n/tr.po
  68. 222
      base_location/i18n/tr_TR.po
  69. 222
      base_location/i18n/uk.po
  70. 221
      base_location/i18n/vi.po
  71. 222
      base_location/i18n/vi_VN.po
  72. 222
      base_location/i18n/zh_CN.po
  73. 222
      base_location/i18n/zh_TW.po
  74. 35
      base_location/migrations/12.0.1.0.0/post-migration.py
  75. 15
      base_location/migrations/12.0.1.0.0/pre-migration.py
  76. 6
      base_location/models/__init__.py
  77. 19
      base_location/models/res_city.py
  78. 40
      base_location/models/res_city_zip.py
  79. 70
      base_location/models/res_company.py
  80. 82
      base_location/models/res_partner.py
  81. 10
      base_location/readme/CONFIGURE.rst
  82. 9
      base_location/readme/CONTRIBUTORS.rst
  83. 1
      base_location/readme/CREDITS.rst
  84. 5
      base_location/readme/DESCRIPTION.rst
  85. 3
      base_location/readme/USAGE.rst
  86. 2
      base_location/security/ir.model.access.csv
  87. BIN
      base_location/static/description/icon.png
  88. 304
      base_location/static/description/icon.svg
  89. 463
      base_location/static/description/index.html
  90. 3
      base_location/tests/__init__.py
  91. 278
      base_location/tests/test_base_location.py
  92. 63
      base_location/views/res_city_view.xml
  93. 56
      base_location/views/res_city_zip_view.xml
  94. 27
      base_location/views/res_company_view.xml
  95. 31
      base_location/views/res_country_view.xml
  96. 25
      base_location/views/res_partner_view.xml

115
base_location/README.rst

@ -0,0 +1,115 @@
====================================
Location management (aka Better ZIP)
====================================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpartner--contact-lightgray.png?logo=github
:target: https://github.com/OCA/partner-contact/tree/12.0/base_location
:alt: OCA/partner-contact
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-base_location
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/134/12.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
This module introduces a zip model that allows you to manage locations in a better way.
The zips will allow the users to complete automatically all address-related fields by just filling the zip.
Also allows different search filters.
**Table of contents**
.. contents::
:local:
Configuration
=============
#. Go to *Contacts / Configuration / Localization / Cities*.
#. Create a new City.
#. Go to *Contacts / Configuration / Localization / Zips*.
#. Create a new Zip and relate it to the city (you can also create the Zip from the City).
or, with module 'Contacts Directory' installed:
#. Go to *Contacts / Configuration / Localization / Countries*.
#. Locate the desired country.
#. Press on the button 'Cities' / 'Zips'.
Usage
=====
#. Access a partner record
#. Fill the field *Location completion*
#. Information about country, state, city and zip will be filled automatically
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/partner-contact/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/partner-contact/issues/new?body=module:%20base_location%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
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 <pedro.baeza@gmail.com>
* Alejandro Santana <alejandrosantana@anubia.es>
* Sandy Carter <sandy.carter@savoirfairelinux.com>
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
* Francesco Apruzzese <f.apruzzese@apuliasoftware.it>
* Dave Lasley <dave@laslabs.com>
* Aitor Bouzas <aitor.bouzas@adaptivecity.com>
Other credits
~~~~~~~~~~~~~
* Icon park: `Icon http://icon-park.com/icon/location-map-pin-orange3/`
Maintainers
~~~~~~~~~~~
This module is maintained by the OCA.
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
This module is part of the `OCA/partner-contact <https://github.com/OCA/partner-contact/tree/12.0/base_location>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

3
base_location/__init__.py

@ -0,0 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models

34
base_location/__openerp__.py

@ -0,0 +1,34 @@
# Copyright 2016 Nicolas Bessi, Camptocamp SA
# Copyright 2018 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Location management (aka Better ZIP)',
'version': '12.0.1.0.0',
'depends': [
'base_address_city',
'contacts',
],
'author': "Camptocamp,"
"ACYSOS S.L.,"
"Alejandro Santana,"
"Tecnativa,"
"AdaptiveCity,"
"Odoo Community Association (OCA)",
'license': "AGPL-3",
'summary': '''Enhanced zip/npa management system''',
'website': '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,
}

13
base_location/demo/res_city_zip.xml

@ -0,0 +1,13 @@
<?xml version = "1.0" encoding="utf-8"?>
<odoo>
<record id="demo_brussels_city" model="res.city">
<field name="name">Brussels</field>
<field name="country_id" ref="base.be"/>
</record>
<record id="demo_brussels_zip" model="res.city.zip">
<field name="name">1000</field>
<field name="city_id" ref="demo_brussels_city"/>
</record>
</odoo>

221
base_location/i18n/am.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/ar.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "أنشئ بواسطة"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "أنشئ في"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "اسم العرض"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "تجميع حسب"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "المعرف"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "آخر تعديل في"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "آخر تحديث في"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

215
base_location/i18n/base_location.pot

@ -0,0 +1,215 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 11.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid "Check this box to ensure every address created in that country has a 'City' chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/bg.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Създадено от"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Създадено на"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Име за показване"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Групиране по"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Последно обновено на"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Последно обновено от"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Последно обновено на"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/bs.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Prikaži naziv"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupiši po"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Zadnje mijenjano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/ca.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creat per"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creat el"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Veure el nom"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupa Per"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Darrera modificació el"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Darrera Actualització el"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/cs.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Vytvořil(a)"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Vytvořeno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Zobrazovaný název"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Seskupit podle"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Naposled upraveno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Naposled upraveno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Naposled upraveno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/da.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Byer"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "By"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Postnummer"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Slå by/postnummer op"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Virksomheder"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Land."
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Delstat/region"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Oprettet af"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Oprettet den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Vist navn"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Gruppér efter"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Sidst ændret den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Sidst opdateret af"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Sidst opdateret den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Søg by"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Delstat"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Postnummer"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Søg på bynavn eller postnummer"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr "Postnr."
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

228
base_location/i18n/de.po

@ -0,0 +1,228 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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: 2018-08-22 12:38+0000\n"
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\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 3.1.1\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
"Aktivieren Sie dieses Kontrollkästchen, um sicherzustellen, dass für jede in "
"diesem Land erstellte Adresse eine \"Stadt\" in der Liste der Städte des "
"Landes ausgewählt ist."
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Orte"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Stadt"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Ortskennung"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Orts-Vervollständigung"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr "Stadt/Standorte-Vervollständungsobjekt"
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Unternehmen"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr "Kontakt"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Land"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Bundesland"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "erstellt von"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "erstellt am"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Anzeigename"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr "Städte erzwingen"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Gruppiere"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Zuletzt verändert am"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "zuletzt aktualisiert von"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "zuletzt aktualisiert am"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr "Breitengrad"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr "Standortvervollständigung"
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr "Standorte"
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr "Standorteverwaltung"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr "Längengrad"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Suche Stadt"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Bundesland"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr "Die Stadt des Partners %s weicht von der des Standorts %s ab"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr "Das Land der Stadt unterscheidet sich vom Land des Standorts %s"
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr "Das Land des Partners %s unterscheidet sich vom dem des Standorts %s"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr "Das Land des Bundeslands unterscheidet sich vom Land des Standorts %s"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Die offizielle Kennung der Stadt"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
"Das Bundesland der Stadt unterscheidet sich vom Bundesland am Standort %s"
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
"Das Bundesland des Partners %s unterscheidet sich von dem am Standort %s"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
"Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
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"

222
base_location/i18n/el_GR.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Δημιουργήθηκε από "
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Δημιουργήθηκε στις"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Ομαδοποίηση Ανά"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "Κωδικός"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/en_GB.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Created by"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Created on"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Display Name"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Group By"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Last Modified on"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/es.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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: 2018-07-13 11:55+0000\n"
"Last-Translator: Enric Tobella <etobella@creublanca.es>\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.0.1\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Ciudades"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Ciudad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Código de ciudad"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Autocompletado a partir de la ciudad"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr "Autocompletado de objetos a partir de ciudades/ubicaciones"
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Compañías"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr "Contacto"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "País"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Provincia"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Modificado por última vez el"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr "Latitud"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr "Longitud"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Buscar ciudad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Provincia"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "El código oficial para la ciudad"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
"Utilice el nombre de ciudad o el código postal para buscar la ubicación"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr "C.P."
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_AR.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Mostrar Nombre"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_CL.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

224
base_location/i18n/es_CO.po

@ -0,0 +1,224 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 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 <josealejandroeche@gmail."
"com>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Ciudades"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Ciudad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Código Ciudad"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre Público"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última Modificación el"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Actualizado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Actualizado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_CR.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_DO.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_EC.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_ES.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
"es_ES/)\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre para mostrar"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_MX.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre desplegado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Ultima modificacion realizada"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultima actualización realizada"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_PE.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nombre a Mostrar"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultima Actualización"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_PY.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/es_VE.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Mostrar nombre"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Modificada por última vez"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultima actualizacion en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/et.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Loonud"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Loodud"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Näidatav nimi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Rühmitamine"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Viimati muudetud"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Viimati uuendatud"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/eu.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Nork sortua"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Created on"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Izena erakutsi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Group By"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/fa.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "ایجاد شده توسط"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "ایجاد شده در"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "نام نمایشی"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "گروه‌بندی برمبنای"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "شناسه"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "آخرین به روز رسانی در"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/fi.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Maa"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Luonut"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Luotu"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nimi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Viimeksi muokattu"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Viimeksi päivitetty"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Viimeksi päivittänyt"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Tila"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

224
base_location/i18n/fr.po

@ -0,0 +1,224 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Nicolas JEUDY <njeudy@panda-chi.io>, 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: 2018-01-03 20:26+0000\n"
"Last-Translator: Nicolas JEUDY <njeudy@panda-chi.io>, 2017\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
"Cocher cette case pour forcer l'utilisation de la liste déroulantes des "
"villes de ce pays lors de la saisie d'une adresse dans ce pays."
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Villes"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Ville"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Code de la ville"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Complétion par ville"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_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_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Pays"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Etat"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Intitulé"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Regrouper par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "Identifiant"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Mis à jour par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Mis à jour le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr "Latitude"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr "Longitude"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Rechercher ville"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Etat"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Code officiel de la ville"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Utilisez le nom de la ville ou le zip lors des recherches"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
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"

222
base_location/i18n/fr_CA.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Afficher le nom"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "Identifiant"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/fr_CH.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Modifié par"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Modifié le"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/gl.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Modificado por última vez o"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "ültima actualización por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/gl_ES.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/he.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "נוצר על ידי"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "נוצר ב-"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "השם המוצג"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "קבץ לפי"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "מזהה"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "תאריך שינוי אחרון"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "עודכן לאחרונה על"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/hr.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Naziv za prikaz"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupiraj po"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Zadnje ažuriranje"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/hr_HR.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Gradovi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Grad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Šifra grada"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Popunjavanje grada"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr "Objekt popunjavanja Grada/Lokacije"
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Poduzeća"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr "Kontakt"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Država"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Oblast/Županija"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Naziv"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Prupiraj po"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Zadnji modificirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Pretraži gradove"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Oblast/Županija"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Službena šifra ovog grada"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Koristite naziv ili šifru grada za pretraživanje"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr "ZIP"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/hu.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Készítette"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Név megjelenítése"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Csoportosítás..."
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Utolsó frissítés dátuma"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Utoljára frissítve "
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/id.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Dibuat oleh"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Dibuat pada"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nama Tampilan"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Dikelompokan berdasarkan .."
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Terakhir Dimodifikasi pada"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Diperbaharui pada"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/it.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Città"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Città"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Codice Città"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Completamento città"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr "Città/luoghi di completamento oggetto"
#. 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_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Paese"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Provincia Paese"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creato da"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creato il"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nome da visualizzare"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Raggruppa per"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Ultimo caricamento il"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultimo caricamento di"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Ricerca città"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Provincia"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Il codice ufficiale per la città"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Usare il nome della città o il codice CAP per ricercare la locazione"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
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 ""

221
base_location/i18n/ja.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "作成者"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "作成日"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "表示名"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "グループ化"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "最終更新日"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "最終更新者"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "最終更新日"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/ko.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "작성자"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "작성일"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "표시 이름"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "그룹화"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "최근 수정"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "최근 갱신한 사람"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "최근 갱신 날짜"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/lt.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Sukurta"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Vaizduojamas pavadinimas"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupuoti pagal"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Paskutinį kartą keista"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/lt_LT.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Sukurta"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/lv.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Izveidoja"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Izveidots"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupēt pēc"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Pēdējās izmaiņas"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/mk.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Креирано од"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Креирано на"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Прикажи име"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Групирај по"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Последна промена на"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Последно ажурирање од"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Последно ажурирање на"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/mn.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Үүсгэгч"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Үүсгэсэн"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Дэлгэцийн Нэр"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Бүлэглэх"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/nb.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Opprettet av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Opprettet den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Visnings navn"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupper etter"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Sist oppdatert "
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Sist oppdatert"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/nb_NO.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Laget av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Laget den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Vis navn"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Gruppe laget av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Sist endret den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Sist oppdatert den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/nl.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Plaats"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr "Contact"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Land"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Te tonen naam"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Groepeer op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Laatst bijgewerkt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/nl_BE.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Gemaakt door"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Gemaakt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Schermnaam"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Groeperen op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Laatst Aangepast op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/nl_NL.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Peter Hageman <hageman.p@gmail.com>, 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 <hageman.p@gmail.com>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Plaatsen"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Plaats"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Plaatscode"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Bedrijven"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Land"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Weergavenaam"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr "Plaatsen afdwingen"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Groepeer op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr "Breedtegraad"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr "Locaties"
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr "Locatiebeheer"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr "Lengtegraad"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Zoek plaats"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Staat/Provincie"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Gebruik de plaatsnaam of de postcode om de locatie te bepalen"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr "Postcode"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/pl.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Utworzone przez"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Utworzono"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Wyświetlana nazwa "
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Pogrupuj wg"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Ostatnio modyfikowano"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ostatnia zmiana"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/pt.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "País"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nome a Apresentar"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Modificado a última vez por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Atualizado pela última vez em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/pt_BR.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\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"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Cidades"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Cidade"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Código da cidade"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Autocompletar de cidades"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr "Objeto autocompletar de Cidades/Locais"
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Empresas"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "País"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Estado"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nome a mostrar"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Última atualização em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Útima atualização por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Útima atualização em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr "Latitude"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr "Longitude"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Buscar cidade"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Estado"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "O código oficial da cidade"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Use o nome da cidade ou o CEP para pesquisar a localização"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
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 ""

222
base_location/i18n/pt_PT.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Cidades"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Cidade"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Código da Cidade"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Empresas"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "País"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nome"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Agrupar por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Modificado em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Atualizado pela última vez em"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Procurar cidade"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Estado"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Código oficial da cidade"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Utilize o nome da cidade ou o código postal para pesquisar o local"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr "Código Postal"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/ro.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Creat de"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Creat la"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Nume Afişat"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupează după"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Ultima actualizare în"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Ultima actualizare la"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/ru.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Создано"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Создан"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Последний раз обновлено"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Последний раз обновлено"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/sk.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Vytvoril"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Vytvorené"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Zobraziť meno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Zoskupiť podľa"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Posledná modifikácia"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Naposledy upravované"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/sl.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr "Kraji"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr "Kraj"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr "Koda kraja"
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr "Izpolnjevanje kraja"
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr "Objekt izpolnjevanja kraja/lokacije"
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr "Družbe"
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr "Stik"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr "Država"
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr "Zvezna država"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Ustvaril"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Ustvarjeno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Prikazni naziv"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Združi po"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Zadnjič spremenjeno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Zadnji posodobil"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr "Iskanje kraja"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr "Zvezna država"
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr "Uradna koda kraja"
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr "Iskanje lokacije z uporabo imena kraja ali poštne številke"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
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 ""

222
base_location/i18n/sr.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Kreiran"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupiši po"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

223
base_location/i18n/sr@latin.po

@ -0,0 +1,223 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Kreiran"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Ime za prikaz"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupisano po"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/sv.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Skapad av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Skapad den"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Visa namn"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Gruppera efter"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Senast redigerad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Senast uppdaterad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/th.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "สร้างโดย"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "สร้างเมื่อ"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "ชื่อที่ใช้แสดง"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "จัดกลุ่มโดย"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "รหัส"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/tr.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Oluşturuldu"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Görünen İsim"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Grupla"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Son değişiklik"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Son güncelleyen"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Son güncelleme"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/tr_TR.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Oluşturulma tarihi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Görünen ad"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "Kimlik"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "En son güncelleme tarihi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/uk.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Створив"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Дата створення"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Назва для відображення"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Групувати за"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Остання модифікація"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Востаннє оновив"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Останнє оновлення"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

221
base_location/i18n/vi.po

@ -0,0 +1,221 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Được tạo bởi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Được tạo vào"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "Tên hiển thị"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "Group By"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "Sửa lần cuối vào"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/vi_VN.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "Tạo bởi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "Tạo vào"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/zh_CN.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "创建者"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "创建时间"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "显示名称"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "分组"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "ID"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "最后修改时间"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "最后更新者"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "上次更新日期"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

222
base_location/i18n/zh_TW.po

@ -0,0 +1,222 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_location
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities
msgid ""
"Check this box to ensure every address created in that country has a 'City' "
"chosen in the list of the country's cities."
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids
#: model:ir.ui.view,arch_db:base_location.better_zip_tree
msgid "Cities"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id
#: model:ir.model.fields,field_description:base_location.field_res_company_city_id
#: model:ir.ui.view,arch_db:base_location.better_zip_form
msgid "City"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code
msgid "City Code"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_company_form_city
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "City completion"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_better_zip
msgid "City/locations completion object"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_company
msgid "Companies"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
#: model:ir.ui.view,arch_db:base_location.view_country_search
msgid "Country"
msgstr ""
#. module: base_location
#: model:ir.model,name:base_location.model_res_country_state
msgid "Country state"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid
msgid "Created by"
msgstr "建立者"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date
msgid "Created on"
msgstr "建立於"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name
msgid "Display Name"
msgstr "顯示名稱"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities
#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities
msgid "Enforce Cities"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Group By"
msgstr "分組方式"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id
msgid "ID"
msgstr "編號"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update
msgid "Last Modified on"
msgstr "最後修改:"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid
msgid "Last Updated by"
msgstr "最後更新:"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date
msgid "Last Updated on"
msgstr "最後更新於"
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude
msgid "Latitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_partner_form
msgid "Location completion"
msgstr ""
#. module: base_location
#: model:ir.actions.act_window,name:base_location.action_zip_tree
#: model:ir.ui.menu,name:base_location.locations_menu
#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form
msgid "Locations"
msgstr ""
#. module: base_location
#: model:ir.ui.menu,name:base_location.locations_root_menu
msgid "Locations Management"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude
msgid "Longitude"
msgstr ""
#. module: base_location
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "Search city"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id
#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter
msgid "State"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:65
#, python-format
msgid "The city of partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:101
#, python-format
msgid "The country of the city differs from the country in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:61
#, python-format
msgid "The country of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:96
#, python-format
msgid "The country of the state differs from the country in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_better_zip_code
msgid "The official code for the city"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/better_zip.py:106
#, python-format
msgid "The state of the city differs from the state in location %s"
msgstr ""
#. module: base_location
#: code:addons/base_location/models/partner.py:57
#, python-format
msgid "The state of the partner %s differs from that in location %s"
msgstr ""
#. module: base_location
#: model:ir.model.fields,help:base_location.field_res_company_zip_id
msgid "Use the city name or the zip code to search the location"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name
msgid "ZIP"
msgstr ""
#. module: base_location
#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id
#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id
msgid "ZIP Location"
msgstr ""

35
base_location/migrations/12.0.1.0.0/post-migration.py

@ -0,0 +1,35 @@
# Copyright 2018 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from psycopg2.extensions import AsIs
from openupgradelib import openupgrade
@openupgrade.migrate()
def migrate(env, version):
column_name = openupgrade.get_legacy_name('better_zip_id')
openupgrade.logged_query(
"ALTER TABLE res_city_zip ADD %s INTEGER", (AsIs(column_name), ),
)
openupgrade.logged_query(
env.cr, """
INSERT INTO res_city_zip (
%s, name, city_id
)
SELECT
id, name, city_id
FROM res_better_zip
WHERE city_id IS NOT NULL""",
(AsIs(column_name), ),
)
# Recompute display name for entries inserted by SQL
env['res.city.zip'].search([])._compute_new_display_name()
# Link res.partner with corresponding new entries
openupgrade.logged_query(
env.cr, """
UPDATE res_partner rp
SET zip_id = rcz.id
FROM res_city_zip rcz
WHERE rcz.%s = rp.%s""",
(AsIs(column_name), AsIs(openupgrade.get_legacy_name('zip_id')), ),
)

15
base_location/migrations/12.0.1.0.0/pre-migration.py

@ -0,0 +1,15 @@
# Copyright 2018 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from openupgradelib import openupgrade
@openupgrade.migrate()
def migrate(env, version):
openupgrade.rename_columns(
env.cr, {
'res_partner': [
('zip_id', None),
]
}
)

6
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

19
base_location/models/res_city.py

@ -0,0 +1,19 @@
# Copyright 2018 Aitor Bouzas <aitor.bouzas@adaptivecity.com>
# 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'),
]

40
base_location/models/res_city_zip.py

@ -0,0 +1,40 @@
# Copyright 2016 Nicolas Bessi, Camptocamp SA
# Copyright 2018 Aitor Bouzas <aitor.bouzas@adaptivecity.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
class ResCityZip(models.Model):
"""City/locations completion object"""
_name = "res.city.zip"
_description = __doc__
_order = "name asc"
_rec_name = "display_name"
name = fields.Char('ZIP', required=True)
city_id = fields.Many2one(
'res.city',
'City',
required=True,
)
display_name = fields.Char(compute='_compute_new_display_name',
store=True, index=True)
_sql_constraints = [
('name_city_uniq', 'UNIQUE(name, city_id)',
'You already have a zip with that code in the same city. '
'The zip code must be unique within it\'s city'),
]
@api.multi
@api.depends('name', 'city_id')
def _compute_new_display_name(self):
for rec in self:
name = [rec.name, rec.city_id.name]
if rec.city_id.state_id:
name.append(rec.city_id.state_id.name)
if rec.city_id.country_id:
name.append(rec.city_id.country_id.name)
rec.display_name = ", ".join(name)

70
base_location/models/res_company.py

@ -0,0 +1,70 @@
# Copyright 2016 Nicolas Bessi, Camptocamp SA
# Copyright 2018 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, fields, api
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',
oldname="better_zip_id",
help='Use the city name or the zip code to search the location',
)
country_enforce_cities = fields.Boolean(
related='country_id.enforce_cities'
)
def _get_company_address_fields(self, partner):
res = super()._get_company_address_fields(partner)
res['city_id'] = partner.city_id
res['zip_id'] = partner.zip_id
return res
def _inverse_city_id(self):
for company in self:
company.partner_id.city_id = company.city_id
def _inverse_zip_id(self):
for company in self:
company.partner_id.zip_id = company.zip_id
@api.onchange('zip_id')
def _onchange_zip_id(self):
if self.zip_id:
self.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

82
base_location/models/res_partner.py

@ -0,0 +1,82 @@
# 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, _
from odoo.exceptions import ValidationError
class ResPartner(models.Model):
_inherit = 'res.partner'
zip_id = fields.Many2one('res.city.zip', 'ZIP Location')
@api.onchange('city_id')
def _onchange_city_id(self):
if not self.zip_id:
super()._onchange_city_id()
if self.zip_id and self.city_id != self.zip_id.city_id:
self.update({
'zip_id': False,
'zip': False,
'city': False,
})
if self.city_id:
return {
'domain': {
'zip_id': [('city_id', '=', self.city_id.id)]
},
}
return {'domain': {'zip_id': []}}
@api.onchange('country_id')
def _onchange_country_id(self):
res = super()._onchange_country_id()
if self.zip_id and self.zip_id.city_id.country_id != self.country_id:
self.zip_id = False
return res
@api.onchange('zip_id')
def _onchange_zip_id(self):
if self.zip_id:
vals = {
'city_id': self.zip_id.city_id,
'zip': self.zip_id.name,
'city': self.zip_id.city_id.name,
}
if self.zip_id.city_id.country_id:
vals.update({'country_id': self.zip_id.city_id.country_id})
if self.zip_id.city_id.state_id:
vals.update({'state_id': self.zip_id.city_id.state_id})
self.update(vals)
@api.constrains('zip_id', 'country_id', 'city_id', 'state_id')
def _check_zip(self):
for rec in self:
if not rec.zip_id:
continue
if rec.zip_id.city_id.state_id != rec.state_id:
raise ValidationError(_(
"The state of the partner %s differs from that in "
"location %s") % (rec.name, rec.zip_id.name))
if rec.zip_id.city_id.country_id != rec.country_id:
raise ValidationError(_(
"The country of the partner %s differs from that in "
"location %s") % (rec.name, rec.zip_id.name))
if rec.zip_id.city_id != rec.city_id:
raise ValidationError(_(
"The city of partner %s differs from that in "
"location %s") % (rec.name, rec.zip_id.name))
@api.onchange('state_id')
def _onchange_state_id(self):
vals = {}
if self.state_id.country_id:
vals.update({'country_id': self.state_id.country_id})
if self.zip_id and self.state_id != self.zip_id.city_id.state_id:
vals.update({
'zip_id': False,
'zip': False,
'city': False,
})
self.update(vals)

10
base_location/readme/CONFIGURE.rst

@ -0,0 +1,10 @@
#. Go to *Contacts / Configuration / Localization / Cities*.
#. Create a new City.
#. Go to *Contacts / Configuration / Localization / Zips*.
#. Create a new Zip and relate it to the city (you can also create the Zip from the City).
or, with module 'Contacts Directory' installed:
#. Go to *Contacts / Configuration / Localization / Countries*.
#. Locate the desired country.
#. Press on the button 'Cities' / 'Zips'.

9
base_location/readme/CONTRIBUTORS.rst

@ -0,0 +1,9 @@
* Nicolas Bessi (Camptocamp)
* Ignacio Ibeas (Acysos S.L.)
* Pedro M. Baeza <pedro.baeza@gmail.com>
* Alejandro Santana <alejandrosantana@anubia.es>
* Sandy Carter <sandy.carter@savoirfairelinux.com>
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
* Francesco Apruzzese <f.apruzzese@apuliasoftware.it>
* Dave Lasley <dave@laslabs.com>
* Aitor Bouzas <aitor.bouzas@adaptivecity.com>

1
base_location/readme/CREDITS.rst

@ -0,0 +1 @@
* Icon park: `Icon http://icon-park.com/icon/location-map-pin-orange3/`

5
base_location/readme/DESCRIPTION.rst

@ -0,0 +1,5 @@
This module introduces a zip model that allows you to manage locations in a better way.
The zips will allow the users to complete automatically all address-related fields by just filling the zip.
Also allows different search filters.

3
base_location/readme/USAGE.rst

@ -0,0 +1,3 @@
#. Access a partner record
#. Fill the field *Location completion*
#. Information about country, state, city and zip will be filled automatically

2
base_location/security/ir.model.access.csv

@ -0,0 +1,2 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"ir_model_access_cityzip0","res_city_zip group_user","model_res_city_zip","base.group_partner_manager",1,1,1,1

BIN
base_location/static/description/icon.png

After

Width: 128  |  Height: 128  |  Size: 6.9 KiB

304
base_location/static/description/icon.svg
File diff suppressed because it is too large
View File

463
base_location/static/description/index.html

@ -0,0 +1,463 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" />
<title>Location management (aka Better ZIP)</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="location-management-aka-better-zip">
<h1 class="title">Location management (aka Better ZIP)</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/partner-contact/tree/12.0/base_location"><img alt="OCA/partner-contact" src="https://img.shields.io/badge/github-OCA%2Fpartner--contact-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-base_location"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/134/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This module introduces a zip model that allows you to manage locations in a better way.</p>
<p>The zips will allow the users to complete automatically all address-related fields by just filling the zip.</p>
<p>Also allows different search filters.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#configuration" id="id1">Configuration</a></li>
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
<li><a class="reference internal" href="#other-credits" id="id7">Other credits</a></li>
<li><a class="reference internal" href="#maintainers" id="id8">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="configuration">
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
<ol class="arabic simple">
<li>Go to <em>Contacts / Configuration / Localization / Cities</em>.</li>
<li>Create a new City.</li>
<li>Go to <em>Contacts / Configuration / Localization / Zips</em>.</li>
<li>Create a new Zip and relate it to the city (you can also create the Zip from the City).</li>
</ol>
<p>or, with module ‘Contacts Directory’ installed:
#. Go to <em>Contacts / Configuration / Localization / Countries</em>.
#. Locate the desired country.
#. Press on the button ‘Cities’ / ‘Zips’.</p>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
<ol class="arabic simple">
<li>Access a partner record</li>
<li>Fill the field <em>Location completion</em></li>
<li>Information about country, state, city and zip will be filled automatically</li>
</ol>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/partner-contact/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/partner-contact/issues/new?body=module:%20base_location%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
<ul class="simple">
<li>Camptocamp</li>
<li>ACYSOS S.L.</li>
<li>Alejandro Santana</li>
<li>Tecnativa</li>
<li>AdaptiveCity</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
<ul class="simple">
<li>Nicolas Bessi (Camptocamp)</li>
<li>Ignacio Ibeas (Acysos S.L.)</li>
<li>Pedro M. Baeza &lt;<a class="reference external" href="mailto:pedro.baeza&#64;gmail.com">pedro.baeza&#64;gmail.com</a>&gt;</li>
<li>Alejandro Santana &lt;<a class="reference external" href="mailto:alejandrosantana&#64;anubia.es">alejandrosantana&#64;anubia.es</a>&gt;</li>
<li>Sandy Carter &lt;<a class="reference external" href="mailto:sandy.carter&#64;savoirfairelinux.com">sandy.carter&#64;savoirfairelinux.com</a>&gt;</li>
<li>Yannick Vaucher &lt;<a class="reference external" href="mailto:yannick.vaucher&#64;camptocamp.com">yannick.vaucher&#64;camptocamp.com</a>&gt;</li>
<li>Francesco Apruzzese &lt;<a class="reference external" href="mailto:f.apruzzese&#64;apuliasoftware.it">f.apruzzese&#64;apuliasoftware.it</a>&gt;</li>
<li>Dave Lasley &lt;<a class="reference external" href="mailto:dave&#64;laslabs.com">dave&#64;laslabs.com</a>&gt;</li>
<li>Aitor Bouzas &lt;<a class="reference external" href="mailto:aitor.bouzas&#64;adaptivecity.com">aitor.bouzas&#64;adaptivecity.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="other-credits">
<h2><a class="toc-backref" href="#id7">Other credits</a></h2>
<ul class="simple">
<li>Icon park: <cite>Icon http://icon-park.com/icon/location-map-pin-orange3/</cite></li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#id8">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>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.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/partner-contact/tree/12.0/base_location">OCA/partner-contact</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</body>
</html>

3
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

278
base_location/tests/test_base_location.py

@ -0,0 +1,278 @@
# Copyright 2015 Yannick Vaucher, Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.exceptions import ValidationError
from odoo.tests import tagged, common
from odoo.tools.misc import mute_logger
import psycopg2
@tagged('post_install', '-at_install')
class TestBaseLocation(common.SavepointCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
country_obj = cls.env['res.country.state']
city_obj = cls.env['res.city']
zip_obj = cls.env['res.city.zip']
cls.partner_obj = cls.env['res.partner']
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
cls.state_vd = country_obj.create({
'name': 'Vaud',
'code': 'VD',
'country_id': cls.env.ref('base.ch').id,
})
cls.env.ref('base.es').write({
'enforce_cities': True
})
cls.company = cls.env.ref('base.main_company')
cls.state_bcn = country_obj.create({
'name': 'Barcelona',
'code': '08',
'country_id': cls.env.ref('base.es').id,
})
cls.state_madrid = country_obj.create({
'name': 'Madrid',
'code': '28',
'country_id': cls.env.ref('base.es').id,
})
cls.city_bcn = city_obj.create({
'name': 'Barcelona',
'state_id': cls.state_bcn.id,
'country_id': cls.env.ref('base.es').id,
})
cls.city_madrid = city_obj.create({
'name': 'Madrid',
'state_id': cls.state_madrid.id,
'country_id': cls.env.ref('base.es').id,
})
cls.city_lausanne = city_obj.create({
'name': 'Lausanne',
'state_id': cls.state_vd.id,
'country_id': cls.env.ref('base.ch').id,
})
cls.lausanne = zip_obj.create({
'name': '666',
'city_id': cls.city_lausanne.id,
})
cls.barcelona = zip_obj.create({
'name': '444',
'city_id': cls.city_bcn.id,
})
def test_onchange_partner_city_completion(self):
"""Test that partner data is filled accodingly"""
partner1 = self.partner_obj.new({
'name': 'Camptocamp',
})
self.barcelona.city_id.country_id.enforce_cities = True
partner1.zip_id = self.barcelona
partner1._onchange_zip_id()
self.assertEqual(partner1.zip, self.barcelona.name)
self.assertEqual(partner1.city, self.barcelona.city_id.name)
self.assertEqual(partner1.state_id, self.barcelona.city_id.state_id)
self.assertEqual(partner1.country_id,
self.barcelona.city_id.country_id)
def test_onchange_company_city_completion(self):
"""Test that company data is filled accodingly"""
company = self.env['res.company'].new({'name': 'Test'})
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'].new({
'name': 'Test',
'partner_id': self.partner_obj.new({}).id
# Partner must be initiated in order to be filled
})
company.update({
'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 partner 1 constraints"""
with self.assertRaises(ValidationError):
self.partner_obj.create({
'name': 'P1',
'zip_id': self.barcelona.id,
})
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"""
country_es = self.env.ref('base.es')
country_es.enforce_cities = True
partner = self.partner_obj.new({
'name': 'TEST',
'zip_id': self.lausanne.id
})
partner.country_id = country_es
partner._onchange_country_id()
self.assertFalse(partner.zip_id)
def test_partner_onchange_city(self):
"""Test partner onchange city_id"""
partner = self.partner_obj.new({
'name': 'TEST',
'zip_id': self.lausanne.id
})
self.city_bcn.country_id.enforce_cities = False
partner.city_id = self.city_bcn
partner._onchange_city_id()
self.assertFalse(partner.zip_id)
partner.city_id = False
res = partner._onchange_city_id()
self.assertFalse(res['domain']['zip_id'])
def test_partner_onchange_state(self):
"""Test partner onchange state_id"""
partner = self.partner_obj.new({
'name': 'TEST',
'zip_id': self.lausanne.id
})
partner.state_id = self.state_bcn
partner._onchange_state_id()
self.assertFalse(partner.zip_id)
self.assertEqual(partner.country_id, partner.state_id.country_id)
def test_company_onchange_state(self):
"""Test company onchange state_id"""
self.company.state_id = self.state_bcn
self.company._onchange_state_id()
self.assertEqual(self.company.country_id,
self.company.state_id.country_id)
def test_display_name(self):
"""Test if the display_name is stored and computed properly"""
self.assertEqual(
self.lausanne.display_name,
'666, Lausanne, Vaud, ' + 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'),
})

63
base_location/views/res_city_view.xml

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_city_tree_inherit" model="ir.ui.view">
<field name="model">res.city</field>
<field name="inherit_id" ref="base_address_city.view_city_tree"/>
<field name="arch" type="xml">
<tree position="attributes">
<attribute name="editable"/>
</tree>
<field name="zipcode" position="attributes">
<attribute name="invisible">1</attribute>
</field>
<field name="zipcode" position="after">
<field name="zip_ids" widget="many2many_tags"/>
</field>
</field>
</record>
<record id="view_city_form" model="ir.ui.view">
<field name="model">res.city</field>
<field name="arch" type="xml">
<form>
<group>
<field name="name"/>
<field name="country_id"/>
<field name="state_id"/>
</group>
<notebook>
<page name="zips" string="Zips">
<field name="zip_ids"/>
</page>
</notebook>
</form>
</field>
</record>
<record id="action_res_city_full" model="ir.actions.act_window">
<field name="name">Cities</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">res.city</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="view_ids"
eval="[(5,0,0),
(0, 0, {'view_mode': 'tree', 'view_id': ref('base_address_city.view_city_tree')}),
(0, 0, {'view_mode': 'form', 'view_id': ref('view_city_form')})]"/>
<field name="help">
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.
</field>
</record>
<menuitem
name="Cities"
id="locations_menu_cities"
parent="contacts.menu_localisation"
action="action_res_city_full"
sequence="4"
/>
</odoo>

56
base_location/views/res_city_zip_view.xml

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record model="ir.ui.view" id="city_zip_form">
<field name="name">res.city.zip.form</field>
<field name="model">res.city.zip</field>
<field name="arch" type="xml">
<form string="Zip">
<group>
<field name="name"/>
<field name="city_id"/>
</group>
</form>
</field>
</record>
<record model="ir.ui.view" id="city_zip_tree">
<field name="name">res.city.zip.tree</field>
<field name="model">res.city.zip</field>
<field name="arch" type="xml">
<tree string="Zips" editable="top">
<field name="name"/>
<field name="city_id"/>
</tree>
</field>
</record>
<record id="view_city_zip_filter" model="ir.ui.view">
<field name="name">res.city.zip.select</field>
<field name="model">res.city.zip</field>
<field name="arch" type="xml">
<search string="Search zip">
<field name="name"/>
<field name="city_id"/>
</search>
</field>
</record>
<record id="action_zip_tree" model="ir.actions.act_window">
<field name="name">Locations</field>
<field name="res_model">res.city.zip</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field ref="city_zip_tree" name="view_id"/>
<field name="search_view_id" ref="view_city_zip_filter"/>
</record>
<menuitem
name="Zips"
id="locations_menu_zips"
parent="contacts.menu_localisation"
action="action_zip_tree"
sequence="5"
/>
</odoo>

27
base_location/views/res_company_view.xml

@ -0,0 +1,27 @@
<?xml version="1.0"?>
<odoo>
<!-- Add cities to the company form -->
<record id="view_company_form_city" model="ir.ui.view">
<field name="name">res.company.form.city</field>
<field name="model">res.company</field>
<field name="inherit_id" ref="base.view_company_form" />
<field name="arch" type="xml">
<field name="street2" position="after">
<field name="zip_id"
options="{'create_name_field': 'city'}"
colspan="4"
placeholder="City completion" />
</field>
<field name="city" position="after">
<field name="country_enforce_cities" invisible="1"/>
<field name='city_id'
attrs="{'invisible': [('country_enforce_cities', '=', False)]}"/>
</field>
<field name="city" position="attributes">
<attribute name="invisible">[('country_enforce_cities', '=', True)]</attribute>
</field>
</field>
</record>
</odoo>

31
base_location/views/res_country_view.xml

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_country_search" model="ir.ui.view">
<field name="name">res.country.search</field>
<field name="model">res.country</field>
<field name="arch" type="xml">
<search string="Country">
<field name="name"/>
<field name="code"/>
</search>
</field>
</record>
<record id="view_res_country_city_better_zip_form" model="ir.ui.view">
<field name="model">res.country</field>
<field name="inherit_id" ref="base.view_country_form"/>
<field name="arch" type="xml">
<xpath expr="//div[hasclass('oe_button_box')]" position="inside">
<button name="%(action_zip_tree)d"
class="oe_stat_button"
icon="fa-globe"
type="action"
context="{'default_country_id': active_id, 'search_default_country_id': active_id}"
string="Zips">
</button>
</xpath>
</field>
</record>
</odoo>

25
base_location/views/res_partner_view.xml

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_partner_form" model="ir.ui.view">
<field name="name">res.partner.zip_id.2</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<field name="city" position="before">
<field name="zip_id"
options="{'create_name_field': 'city', 'no_open': True, 'no_create': True}"
placeholder="Location completion"
class="oe_edit_only"
attrs="{'readonly': [('type', '=', 'contact'),('parent_id', '!=', False)]}"/>
</field>
<xpath expr="//field[@name='child_ids']/form//field[@name='city']"
position="before">
<field name="zip_id"
options="{'create_name_field': 'city', 'no_open': True, 'no_create': True}"
placeholder="City completion"
class="oe_edit_only"/>
</xpath>
</field>
</record>
</odoo>
Loading…
Cancel
Save