Browse Source

[MIG] base_country_state_translatable: Migration to 11.0

remove unnecessary lines, minor adjustments
pull/689/head
Yoshi Tashiro 6 years ago
committed by David Dufresne
parent
commit
408329144b
  1. 10
      base_country_state_translatable/README.rst
  2. 4
      base_country_state_translatable/__init__.py
  3. 8
      base_country_state_translatable/__manifest__.py
  4. 4
      base_country_state_translatable/models/__init__.py
  5. 1
      base_country_state_translatable/models/res_country.py

10
base_country_state_translatable/README.rst

@ -1,4 +1,4 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3 :alt: License: AGPL-3
@ -6,23 +6,23 @@
Translate Country States Translate Country States
======================== ========================
This module allows to translate the country states names
This module allows to translate the country states names.
Usage Usage
===== =====
* Inherit this module in your l10n_xx_country_states Module and translate the states names
* Inherit this module in your l10n_xx_country_states Module and translate the states names.
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot :alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/175/10.0
:target: https://runbot.odoo-community.org/runbot/134/11.0
Bug Tracker Bug Tracker
=========== ===========
Bugs are tracked on `GitHub Issues Bugs are tracked on `GitHub Issues
<https://github.com/OCA/l10n-germany/issues>`_. In case of trouble, please
<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, 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. help us smashing it by providing a detailed and welcomed feedback.

4
base_country_state_translatable/__init__.py

@ -1,5 +1 @@
# -*- coding: utf-8 -*-
# © initOS GmbH 2017
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models from . import models

8
base_country_state_translatable/__manifest__.py

@ -1,17 +1,13 @@
# -*- coding: utf-8 -*-
# © initOS GmbH 2017 # © initOS GmbH 2017
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{ {
"name": "Translate Country States", "name": "Translate Country States",
"version": "10.0.1.0.0",
"version": "11.0.1.0.0",
"depends": ['base', "depends": ['base',
], ],
'application': False,
'author': 'initOS GmbH, Odoo Community Association (OCA)', 'author': 'initOS GmbH, Odoo Community Association (OCA)',
"category": "Localisation/Europe",
"category": "Localisation",
'license': 'AGPL-3', 'license': 'AGPL-3',
'data': [],
'installable': True, 'installable': True,
'auto_install': False,
} }

4
base_country_state_translatable/models/__init__.py

@ -1,5 +1 @@
# -*- coding: utf-8 -*-
# © initOS GmbH 2017
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import res_country from . import res_country

1
base_country_state_translatable/models/res_country.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © initOS GmbH 2017 # © initOS GmbH 2017
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Loading…
Cancel
Save