mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-27 03:12:05 +02:00
Initial commit: Hr packages
This commit is contained in:
commit
62531cd146
2820 changed files with 1432848 additions and 0 deletions
50
odoo-bringout-oca-ocb-hr_skills_survey/README.md
Normal file
50
odoo-bringout-oca-ocb-hr_skills_survey/README.md
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# Skills Certification
|
||||
|
||||
|
||||
Certification and Skills for HR
|
||||
===============================
|
||||
|
||||
This module adds certification to resume for employees.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-hr_skills_survey
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- hr_skills
|
||||
- survey
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Skills Certification
|
||||
- **Version**: 1.0
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `hr_skills_survey`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-hr_skills_survey/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-hr_skills_survey/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Hr_skills_survey Module - hr_skills_survey
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for hr_skills_survey. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [hr_skills](../../odoo-bringout-oca-ocb-hr_skills)
|
||||
- [survey](../../odoo-bringout-oca-ocb-survey)
|
||||
4
odoo-bringout-oca-ocb-hr_skills_survey/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-hr_skills_survey/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon hr_skills_survey or install in UI.
|
||||
7
odoo-bringout-oca-ocb-hr_skills_survey/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-hr_skills_survey/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-hr_skills_survey"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-hr_skills_survey"
|
||||
```
|
||||
13
odoo-bringout-oca-ocb-hr_skills_survey/doc/MODELS.md
Normal file
13
odoo-bringout-oca-ocb-hr_skills_survey/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in hr_skills_survey.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class hr_resume_line
|
||||
class survey_user_input
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-hr_skills_survey/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-hr_skills_survey/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: hr_skills_survey. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon hr_skills_survey
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-hr_skills_survey/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-hr_skills_survey/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-hr_skills_survey/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-hr_skills_survey/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-hr_skills_survey/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-hr_skills_survey/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon hr_skills_survey
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-hr_skills_survey/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-hr_skills_survey/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Skills Certification',
|
||||
'category': 'Hidden',
|
||||
'version': '1.0',
|
||||
'summary': 'Add certification to resume of your employees',
|
||||
'description':
|
||||
"""
|
||||
Certification and Skills for HR
|
||||
===============================
|
||||
|
||||
This module adds certification to resume for employees.
|
||||
""",
|
||||
'depends': ['hr_skills', 'survey'],
|
||||
'data': [
|
||||
'views/hr_templates.xml',
|
||||
'data/hr_resume_data.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'hr_skills_survey/static/src/fields/**/*',
|
||||
'hr_skills_survey/static/src/xml/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="resume_type_certification" model="hr.resume.line.type">
|
||||
<field name="name">Internal Certification</field>
|
||||
<field name="sequence">25</field>
|
||||
</record>
|
||||
</data>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "شهادة"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "نوع العرض"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "بند السيرة الذاتية لموظف "
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "مُدخلات مستخدم الاستطلاع"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Ekran Tipi"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Rumena Georgieva <rumena.georgieva@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Rumena Georgieva <rumena.georgieva@gmail.com>, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Начин на показване"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Потребителски вход за проучване"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-12-15 12:50+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificiranje"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Vrsta prikaza"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Stavka životopisa djelatnika"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Anketa koju popunjava korisnik"
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2022
|
||||
# Arnau Ros, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificació"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipus de visualització"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Reprèn la línia d'un empleat"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Entrada de l'usuari de l'enquesta"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký, 2022
|
||||
# Jakub Smolka, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Cetrifikace"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Typ zobrazení"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Řádek životopisu zaměstnance"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Záznam uživatele průzkumu"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: lhmflexerp <lhm@flexerp.dk>, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificering"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Vis type"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Medarbejders CV linjer"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Undersøgelse - bruger-input"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Zertifizierung"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Anzeigetyp"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Lebenslaufzeile eines Mitarbeiters"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Umfrage-Benutzereingabe"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificación"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de pantalla"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Línea de currículum de un empleado"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Entrada de usuario en la encuesta"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificación"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de pantalla"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Línea de currículum de un empleado"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Encuesta de opinión de los usuarios"
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Leaanika Randmets, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2022\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifitseerimine"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Kuvamise tüüp"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Töötaja CV read"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Küsitluses osalenud kasutaja sisend"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "گواهینامه"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "نوع نمایش"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Ligne de CV d'un employé"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "ورود کاربر نظرسنجی"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifiointi"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Näyttötyyppi"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Työntekijän ansioluettelon rivi"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Käyttäjäsyöte kyselyssä"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certification"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Type d'affichage"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Ligne de CV d'un employé"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Saisie utilisateur du sondage"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Display Type"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "תעודה"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "סוג תצוגה"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "תגובת המשתמש לסקר"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "डिस्प्ले टाइप"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificiranje"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Vrsta prikaza"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Stavka životopisa djelatnika"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Anketa koju popunjava korisnik"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-12-15 12:50+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: krnkris, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Bizonyítvány"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Típus megjeleítése"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Felhasználó Felmérés bevitel"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifikat"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Display Type"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Baris resume karyawan"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Pengguna"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Skjár Tegund"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificazione"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo di visualizzazione"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Riga curriculum di un dipendente"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Inserimento utente nel sondaggio"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "検定"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "表示タイプ"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "従業員の履歴書明細"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "ユーザーの入力を調査する"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "បង្ហាញប្រភេទ"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "ការបញ្ចូលអ្នកប្រើស្ទង់មតិ។"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "인증서"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "표시 유형"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "직원의 경력 사항 명세"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "설문 조사 사용자 입력"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:11+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resumé line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2023
|
||||
# Gailius Kazlauskas <gailius@vialaurea.lt>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Gailius Kazlauskas <gailius@vialaurea.lt>, 2024\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifikavimas"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Ekrano tipas"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Darbuotojo gyvenimo aprašymo eilutė"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Apklausos vartotojo įvestis"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2022
|
||||
# Anzelika Adejanova, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Anzelika Adejanova, 2022\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifikāts"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Attēlošanas Tips"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Aptaujas lietotāja ieraksts"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "സർട്ടിഫിക്കേഷൻ"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "ഡിസ്പ്ലേ ടൈപ്പ്"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2023\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Гэрчилгээ"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Харагдах хэлбэр"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Ажилтны намтарын мөр"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Асуулгын Хэрэглэгчийн Оролт"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Pensijilan"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Jenis Paparan"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Talian resume seorang pekerja"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Jorunn D. Newth, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifisering"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Visningstype"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Undersøkelse Bruker Inndata"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificering"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Soort weergave"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "cv-regels van een werknemer"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Enquête gebruikersinvoer"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Natalia Gros <nag@odoo.com>, 2022
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Maja Stawicka <mjstwck@wp.pl>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certyfikacja"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Typ wyświetlania"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Pozycja życiorysu pracownika"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Wkład użytkownika ankiety"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2022
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificação"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de exibição"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Entrada do Utilizador do Inquérito"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Layna Nascimento, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificação"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de Display"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Linha de currículo de um funcionário"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Entrada de Usuário da Pesquisa"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Maria Muntean, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Maria Muntean, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificare"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Tipul de afișare"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Linia de CV a unui angajat"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Răspuns Utilizator Sondaj"
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Alena Vlasova, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Сертификация"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Способ отображения"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Строка резюме сотрудника"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Опрос пользователей ввод"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Osvedčenie"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Zobrazovaný typ"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Vstup užívateľa prieskumu"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certificiranje"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Vrsta prikaza"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Življenjepis zaposlenega"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Anketni uporabniški vnos"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifikacija"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Vrsta prikaza"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Radna linija zaposlenog"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Unos korisnika ankete"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Examen"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Visningstyp"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Meritförteckning för en anställd"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Användarsvar"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "ใบรับรอง"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "ประเภทการแสดง"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "ประวัติเรซูเม่ของพนักงาน"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "แบบสำรวจข้อมูลผู้ใช้"
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Yedigen, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Sertifikasyon"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Görünüm Türü"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Bir personelin özgeçmiş satırı"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Anket Kullanıcı Girişi"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Mykyta Borovik <nick.borovik@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Mykyta Borovik <nick.borovik@gmail.com>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Сертифікація"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Тип відображення"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Рядок резюме співробітника"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Обстеження вхідних даних користувача"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "Certification"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "Loại hiển thị"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "Dòng CV của một nhân viên"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "Dữ liệu người dùng nhập vào khảo sát"
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "认证"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "显示类型"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "员工的简历行"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "调查用户输入"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_skills_survey
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__survey_id
|
||||
#: model:ir.model.fields.selection,name:hr_skills_survey.selection__hr_resume_line__display_type__certification
|
||||
msgid "Certification"
|
||||
msgstr "認證"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model.fields,field_description:hr_skills_survey.field_hr_resume_line__display_type
|
||||
msgid "Display Type"
|
||||
msgstr "顯示類型"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_hr_resume_line
|
||||
msgid "Resume line of an employee"
|
||||
msgstr "員工的履歷資料行"
|
||||
|
||||
#. module: hr_skills_survey
|
||||
#: model:ir.model,name:hr_skills_survey.model_survey_user_input
|
||||
msgid "Survey User Input"
|
||||
msgstr "問券使用者輸入"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import survey_user
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
from odoo.tools import html2plaintext
|
||||
|
||||
|
||||
class SurveyUserInput(models.Model):
|
||||
_inherit = 'survey.user_input'
|
||||
|
||||
def _mark_done(self):
|
||||
""" Will add certification to employee's resume if
|
||||
- The survey is a certification
|
||||
- The user is linked to an employee
|
||||
- The user succeeded the test """
|
||||
|
||||
super(SurveyUserInput, self)._mark_done()
|
||||
|
||||
certification_user_inputs = self.filtered(lambda user_input: user_input.survey_id.certification and user_input.scoring_success)
|
||||
partner_has_completed = {user_input.partner_id.id: user_input.survey_id for user_input in certification_user_inputs}
|
||||
employees = self.env['hr.employee'].sudo().search([('user_id.partner_id', 'in', certification_user_inputs.mapped('partner_id').ids)])
|
||||
for employee in employees:
|
||||
line_type = self.env.ref('hr_skills_survey.resume_type_certification', raise_if_not_found=False)
|
||||
survey = partner_has_completed.get(employee.user_id.partner_id.id)
|
||||
self.env['hr.resume.line'].create({
|
||||
'employee_id': employee.id,
|
||||
'name': survey.title,
|
||||
'date_start': fields.Date.today(),
|
||||
'date_end': fields.Date.today(),
|
||||
'description': html2plaintext(survey.description) if survey.description else '',
|
||||
'line_type_id': line_type and line_type.id,
|
||||
'display_type': 'certification',
|
||||
'survey_id': survey.id
|
||||
})
|
||||
|
||||
|
||||
class ResumeLine(models.Model):
|
||||
_inherit = 'hr.resume.line'
|
||||
|
||||
display_type = fields.Selection(selection_add=[('certification', 'Certification')])
|
||||
survey_id = fields.Many2one('survey.survey', string='Certification', readonly=True)
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-inherit="hr_skills.ResumeListRenderer.RecordRow" t-inherit-mode="extension">
|
||||
<xpath expr="//t[@id='row']" position='after'>
|
||||
<t t-if="data.display_type === 'certification'">
|
||||
<td t-on-click="(ev) => this.onCellClicked(record, null, ev)"
|
||||
class="o_data_cell container" colspan="2">
|
||||
<div class="o_resume_line row" t-att-data-id="id">
|
||||
<div class="o_resume_line_dates col-lg-3">
|
||||
<span><t t-out="formatDate(data.date_end)"/></span>
|
||||
</div>
|
||||
<div class="o_resume_line_desc col-lg-8">
|
||||
<h3>
|
||||
<i class="fa fa-trophy text-warning me-1"></i>
|
||||
<t t-esc="data.name"/>
|
||||
</h3>
|
||||
<t t-if="data.description" t-out="data.description"/>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</t>
|
||||
</t>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-extend="hr_resume_data_row">
|
||||
<t t-jquery="tr.o_data_row" t-operation="append">
|
||||
<t t-if="data.display_type === 'certification'">
|
||||
<td class="o_data_cell container" colspan="2">
|
||||
<div class="o_resume_line row" t-att-data-id="id">
|
||||
<div class="o_resume_line_dates col-lg-3">
|
||||
<span><t t-esc="data.date_end"/></span>
|
||||
</div>
|
||||
<div class="o_resume_line_desc col-lg-8">
|
||||
<h3>
|
||||
<i class="fa fa-trophy text-warning me-1"></i>
|
||||
<t t-esc="data.name"/>
|
||||
</h3>
|
||||
<t t-if="data.description" t-esc="data.description"/>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</t>
|
||||
</t>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="resume_survey_line_view_form" model="ir.ui.view">
|
||||
<field name="name">hr.resume.line.form</field>
|
||||
<field name="model">hr.resume.line</field>
|
||||
<field name="inherit_id" ref="hr_skills.resume_line_view_form"/>
|
||||
<field eval="20" name="priority"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='line_type_id']" position="after">
|
||||
<field name="survey_id" readonly="0"
|
||||
domain="[('certification', '=', True)]"
|
||||
attrs="{'invisible': [('display_type', '!=', 'certification')]}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
43
odoo-bringout-oca-ocb-hr_skills_survey/pyproject.toml
Normal file
43
odoo-bringout-oca-ocb-hr_skills_survey/pyproject.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-hr_skills_survey"
|
||||
version = "16.0.0"
|
||||
description = "Skills Certification - Add certification to resume of your employees"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-hr_skills>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-survey>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["hr_skills_survey"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue