Skip to content

Commit

Permalink
resolve module installation error in 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manishkumarbohra committed Nov 13, 2023
1 parent dbbb490 commit 07c40ce
Show file tree
Hide file tree
Showing 28 changed files with 1,058 additions and 0 deletions.
88 changes: 88 additions & 0 deletions hr_employee_age/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
============
Employee Age
============

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:562bc7a14c6494d67ecdc257acf134c6dc0f21e46d975385817660a0906c798c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fhr-lightgray.png?logo=github
:target: https://github.com/OCA/hr/tree/16.0/hr_employee_age
:alt: OCA/hr
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/hr-16-0/hr-16-0-hr_employee_age
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/hr&target_branch=16.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Adds and computes age field on employee

**Table of contents**

.. contents::
:local:

Usage
=====

When you add the birthday of an employee, the age of an employee will auto-populate.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/hr/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/hr/issues/new?body=module:%20hr_employee_age%0Aversion:%2016.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
~~~~~~~

* Salton Massally <[email protected]>

Contributors
~~~~~~~~~~~~

* Salton Massally (iDT Labs) <[email protected]>
* Serpent Consulting Services Pvt. Ltd. <[email protected]>
* Saran Lim. <[email protected]>
* Komsan Somwong <[email protected]>
* `Pesol <https://www.pesol.es>`__:

* Pedro Evaristo Gonzalez Sanchez <[email protected]>
* Manish Bohra <[email protected]>

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/hr <https://github.com/OCA/hr/tree/16.0/hr_employee_age>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
4 changes: 4 additions & 0 deletions hr_employee_age/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (C) 2015 Salton Massally (<[email protected]>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import models
16 changes: 16 additions & 0 deletions hr_employee_age/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright (C) 2015 Salton Massally (<[email protected]>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Employee Age",
"version": "17.0.0.0.0",
"license": "AGPL-3",
"author": "Salton Massally <[email protected]>, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/hr",
"category": "Human Resources",
"summary": "Age field for employee",
"depends": ["hr"],
"data": ["views/hr_employee.xml"],
"installable": True,
}
31 changes: 31 additions & 0 deletions hr_employee_age/i18n/ar.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# OCA Transbot <[email protected]>, 2016
# abdullah alsabi <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-10 04:30+0000\n"
"PO-Revision-Date: 2017-06-10 04:30+0000\n"
"Last-Translator: abdullah alsabi <[email protected]>, 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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "العمر"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "الموظف"
30 changes: 30 additions & 0 deletions hr_employee_age/i18n/cs_CZ.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# Lukáš Spurný <[email protected]>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-02-23 03:45+0000\n"
"PO-Revision-Date: 2018-02-23 03:45+0000\n"
"Last-Translator: Lukáš Spurný <[email protected]>, 2018\n"
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/"
"teams/23907/cs_CZ/)\n"
"Language: cs_CZ\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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "Stáří"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Zaměstnanec"
30 changes: 30 additions & 0 deletions hr_employee_age/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# OCA Transbot <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-11-28 01:43+0000\n"
"PO-Revision-Date: 2019-10-09 12:36+0000\n"
"Last-Translator: Maria Sparenberg <[email protected]>\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.8\n"

#. module: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "Alter"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Angestellter"
30 changes: 30 additions & 0 deletions hr_employee_age/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# OCA Transbot <[email protected]>, 2016
# José Antonio Cuello <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-07 02:19+0000\n"
"PO-Revision-Date: 2017-01-07 02:19+0000\n"
"Last-Translator: José Antonio Cuello <[email protected]>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "Edad"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Empleado"
29 changes: 29 additions & 0 deletions hr_employee_age/i18n/fi.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: hr (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-14 04:15+0000\n"
"PO-Revision-Date: 2016-04-04 11:07+0000\n"
"Last-Translator: Jarmo Kortetjärvi <[email protected]>\n"
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-hr-8-0/language/"
"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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr ""

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Työntekijä"
30 changes: 30 additions & 0 deletions hr_employee_age/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# OCA Transbot <[email protected]>, 2016
# leemannd <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-29 11:36+0000\n"
"PO-Revision-Date: 2016-11-29 11:36+0000\n"
"Last-Translator: leemannd <[email protected]>, 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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "Age"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Employé"
30 changes: 30 additions & 0 deletions hr_employee_age/i18n/hr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# Bole <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-07-04 06:52+0000\n"
"PO-Revision-Date: 2017-07-04 06:52+0000\n"
"Last-Translator: Bole <[email protected]>, 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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "Starost"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Djelatnik"
31 changes: 31 additions & 0 deletions hr_employee_age/i18n/hr_HR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
# Translators:
# Bole <[email protected]>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-29 03:45+0000\n"
"PO-Revision-Date: 2016-11-29 03:45+0000\n"
"Last-Translator: Bole <[email protected]>, 2016\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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr "Godine"

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr "Djelatnik"
24 changes: 24 additions & 0 deletions hr_employee_age/i18n/hr_employee_age.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * hr_employee_age
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.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: hr_employee_age
#: model:ir.model.fields,field_description:hr_employee_age.field_hr_employee__age
msgid "Age"
msgstr ""

#. module: hr_employee_age
#: model:ir.model,name:hr_employee_age.model_hr_employee
msgid "Employee"
msgstr ""
Loading

0 comments on commit 07c40ce

Please sign in to comment.