mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-18 04:12:08 +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_gamification/README.md
Normal file
50
odoo-bringout-oca-ocb-hr_gamification/README.md
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# HR Gamification
|
||||
|
||||
Use the HR resources for the gamification process.
|
||||
|
||||
The HR officer can now manage challenges and badges.
|
||||
This allow the user to send badges to employees instead of simple users.
|
||||
Badge received are displayed on the user profile.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-hr_gamification
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- gamification
|
||||
- hr
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: HR Gamification
|
||||
- **Version**: 1.0
|
||||
- **Category**: Human Resources
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `hr_gamification`.
|
||||
|
||||
## 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_gamification/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-hr_gamification/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_gamification Module - hr_gamification
|
||||
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_gamification. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-hr_gamification/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-hr_gamification/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [gamification](../../odoo-bringout-oca-ocb-gamification)
|
||||
- [hr](../../odoo-bringout-oca-ocb-hr)
|
||||
4
odoo-bringout-oca-ocb-hr_gamification/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-hr_gamification/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_gamification or install in UI.
|
||||
7
odoo-bringout-oca-ocb-hr_gamification/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-hr_gamification/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-hr_gamification"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-hr_gamification"
|
||||
```
|
||||
15
odoo-bringout-oca-ocb-hr_gamification/doc/MODELS.md
Normal file
15
odoo-bringout-oca-ocb-hr_gamification/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in hr_gamification.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class gamification_badge
|
||||
class gamification_badge_user
|
||||
class hr_employee_base
|
||||
class res_users
|
||||
```
|
||||
|
||||
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_gamification/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-hr_gamification/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: hr_gamification. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon hr_gamification
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-hr_gamification/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-hr_gamification/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
41
odoo-bringout-oca-ocb-hr_gamification/doc/SECURITY.md
Normal file
41
odoo-bringout-oca-ocb-hr_gamification/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in hr_gamification.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../hr_gamification/security/ir.model.access.csv)**
|
||||
- 4 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
## Security Groups & Configuration
|
||||
|
||||
Security groups and permissions defined in:
|
||||
- **[gamification_security.xml](../hr_gamification/security/gamification_security.xml)**
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[gamification_security.xml](../hr_gamification/security/gamification_security.xml)**
|
||||
- Security groups, categories, and XML-based rules
|
||||
- **[ir.model.access.csv](../hr_gamification/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
|
|
@ -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_gamification/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-hr_gamification/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_gamification
|
||||
```
|
||||
8
odoo-bringout-oca-ocb-hr_gamification/doc/WIZARDS.md
Normal file
8
odoo-bringout-oca-ocb-hr_gamification/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Wizards
|
||||
|
||||
Transient models exposed as UI wizards in hr_gamification.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class GamificationBadgeUserWizard
|
||||
```
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': 'HR Gamification',
|
||||
'version': '1.0',
|
||||
'category': 'Human Resources',
|
||||
'depends': ['gamification', 'hr'],
|
||||
'description': """Use the HR resources for the gamification process.
|
||||
|
||||
The HR officer can now manage challenges and badges.
|
||||
This allow the user to send badges to employees instead of simple users.
|
||||
Badge received are displayed on the user profile.
|
||||
""",
|
||||
'data': [
|
||||
'security/gamification_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'wizard/gamification_badge_user_wizard_views.xml',
|
||||
'views/gamification_views.xml',
|
||||
'views/hr_employee_views.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/af.po
Normal file
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/af.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Gekanselleer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/am.po
Normal file
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/am.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
241
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ar.po
Normal file
241
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ar.po
Normal file
|
|
@ -0,0 +1,241 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"يُحدَّد الهدف من قِبَل المستخدم ونوع الهدف.\n"
|
||||
" يمكن إنشاء الأهداف تلقائيًا باستخدام التحديات. "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "كافة شارات الموظف، المرتبطة بالموظف إما مباشرة أو من خلال المستخدم"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"قم بتعيين قائمة من الأهداف لمجموعة محددة من المستخدمين لتقييمها.\n"
|
||||
" قد يكون التحدي دوريًا (أسبوعيًا أو شهريًا) ليتم إنشاء الأهداف تلقائيًا.\n"
|
||||
" يتم إنشاء الأهداف للمستخدمين المحددين أو لأعضاء مجموعة ما. "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "الشارات"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"الشارات هي مكافآت على العمل الجيد. امنح الشارات لمن ترى أنهم يستحقونها."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "الشارات المرتبطة مباشرةً بهذا الموظف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "الموظف الأساسي"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "التحديات"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "إنشاء تحدي جديد"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "إنشاء هدف جديد"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "صف ما فعلوه وما أهميته (سيكون عامًا)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "الشارة المباشرة"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "الموظف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "شارات الموظف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "أهداف الموظف للموارد البشرية"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "شارة التلعيب "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "شارة مستخدم التلعيب "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "معالج شارة مستخدم التلعيب "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "الهدف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "سجل الأهداف "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "منح شارة"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "منح هذا الموظف شارته الأولى "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "تم المنح "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "عدد الموظفين الذين تم منحهم شارات "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "يحتوي على شارات "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "الشارات المتلقاة"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "اسم المستخدم المرتبط بالمورد لإدارة وصوله."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "مكافأة الموظف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "مكافأة الموظف بـ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "الموظف المختار غير متوافق مع المستخدم المختار."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "علام أنت ممتن؟"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "لا يمكنك إرسال شارة لنفسك."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "يمكنك إرسال الشارات للموظفين المرتبطين بمستخدم فقط."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "لمكافأة هذا الموظف على أداء جيد"
|
||||
237
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/az.po
Normal file
237
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/az.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Bəcik Nişanları"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Əsas İşçi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Ləğv edin"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "İşçi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Resursun girişini idarə etmək üçün resurs üzrə əlaqədar istifadəçi adı."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "İstifadəçi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/be.po
Normal file
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/be.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Значкі"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Адмяніць"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/bg.po
Normal file
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/bg.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Nikola Iliev, 2023
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Дадена цел се определя от потребител и вид на целта.\n"
|
||||
" Цели могат да се създават автоматично чрез използването на предизвикателства."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "Всички значки, свързани със служителя - директно или чрез потребителя"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Разпределете целеви списък към избрани потребители, за да ги оценявате.\n"
|
||||
" Устройството може да използва период (седмичен, месечен...) за автоматично създаване на цели.\n"
|
||||
" Целите са създадени за конкретни потребители или членове на групата."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Значки"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Значките представляват награди за добре свършена работа. Връчвайте ги на "
|
||||
"хора, за които сте сигурни, че ги заслужават."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Значки, пряко свързани със служителя"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Основен служител"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Отказ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Предизвикателства"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Обяснете какво направиха и защо е значимо (ще бъде публично)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Служител"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Значки за служители"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Цели на служителите в областта на ЧР"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Цел"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "История на целите"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Връчете значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Връчена"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Получени значки"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Име на свързан потребител, който управлява достъпа до този ресурс."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Наградете служител"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Наградете служител с"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Избраният служител не отговаря на избрания потребител."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "За какво си благодарен/а?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Можете да изпращате значки само на служители, свързани с потребител."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "за да възнаградите този служител за доброто му представяне"
|
||||
234
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/bs.po
Normal file
234
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/bs.po
Normal file
|
|
@ -0,0 +1,234 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Značke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Značke izravno povezane sa zaposlenikom"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Obični zaposlenik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Izazovi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Kreiraj novi izazov"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Kreiraj novi cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Opišite što su učinili i zašto je to važno (biti će javno vidljivo)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Izravna značka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Značke djelatnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Ciljevi djelatnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Značka izazova"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Korisnička značka igre"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Čarobnjak značke korisnika gamifikacije"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Povijest ciljeva"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Nagradi značkom"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Dodijelite ovom zaposleniku njegovu prvu značku"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Dodjeljeno"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Broj odobrenih radnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Ima značke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Primljene značke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Povezano korisničko ime za resurs da upravlja njegovim pristupom."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Nagradite djelatnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Nagradite djelatnika sa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Odabrani djelatnik ne odgovara odabranom korisniku."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Za što ste zahvalni?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Ne možete poslati značku sami sebi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Značke možete poslati samo djelatnicima povezanima sa korisnicima."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "da nagradite ovog djelatnika za dobru akciju"
|
||||
250
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ca.po
Normal file
250
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ca.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# jabelchi, 2022
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# Arnau Ros, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# marcescu, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: marcescu, 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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Un objectiu es defineix per un usuari i un tipu sd'objectiu\n"
|
||||
" Els objectius es poden crear automàticament usant reptes."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Totes les insígnies dels empleats, vinculades a l'empleat directament o a "
|
||||
"través de l'usuari"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Assigna una llista d'objectius als usuaris seleccionats per avaluar-los.\n"
|
||||
" El repte pot utilitzar un període (setmanal, mensual...) per a la creació automàtica d'objectius.\n"
|
||||
" Els objectius es creen per als usuaris o membres del grup especificats."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Insígnies"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Les insígnies són recompenses de bona feina. Doneu-los a la gent que creieu "
|
||||
"que es mereix."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Insígnies directament vinculades a l'empleat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empleat bàsic"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·lar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Desafiaments"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Crea un nou repte"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Crea un objectiu nou"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Descriviu el que han fet i perquè és important (serà públic)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Insígnia directa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Empleat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Insígnies d'empleat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Objectius de l'HR de l'empleat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Insíginia de gamificació"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Insignia de gamificació de l'usuari"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Assistent d'Insígnies d'Usuari de Gamificació"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Meta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historial dels objectius"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Concedeix una insígnia"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Concedeix a aquest empleat la seva primera insígnia"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Concedit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Concedit Recompte d'empleats"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Té insígnies"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Insígnies rebudes"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Usuari relacionat amb el recurs per gestionar-ne el seu accés."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Recompensar a l'empleat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Recompensar a l'empleat amb"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "L'empleat seleccionat no correspon a l'usuari seleccionat."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Per què estàs agraït?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "No pot enviar-se una insígnia a si mateix."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Només pots enviar insígnies als empleats enllaçats a un usuari."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "recompensar aquest empleat per una bona acció"
|
||||
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/cs.po
Normal file
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/cs.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Jiří Podhorecký, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Cíl je definován uživatelem a typem cíle. \n"
|
||||
"Cíle mohou být vytvořeny automaticky pomocí výzev."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Všechny odznaky zaměstnanců spojené se zaměstnancem přímo, nebo "
|
||||
"prostřednictvím uživatele"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Vybraným uživatelům přiřaďte seznam cílů k jejich vyhodnocení.\n"
|
||||
"\n"
|
||||
"Výzva může použít období (týdenní, měsíční ...) pro automatické vytváření cílů.\n"
|
||||
"Cíle jsou vytvářeny pro určené uživatele nebo člena skupiny."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Odznaky"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Odznaky jsou odměny dobré práce. Dejte je lidem, o kterých si myslíte, že si"
|
||||
" to zaslouží."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Odznaky přímo spojené se zaměstnancem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Základní zaměstnanec"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Výzvy"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Vytvořit novou výzvu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Vytvořit nový cíl"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Popište, co udělali a proč je to důležité (bude veřejné)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Přímý odznak"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Zaměstnanec"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Odznaky zaměstnanců"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Cíle zaměstnanců personálního oddělení"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Odznak gamifikace"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Odznak uživatele gamifikace"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Průvodce odznakem uživatele Gamifikace"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cíl"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historie cílů"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Udělit odznak"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Udělit tomuto zaměstnanci jeho první odznak"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Uděleno"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Počet zaměstnanců s udělenými odznaky"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Má odznaky"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Přijaté odznaky"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Vztažené uživatelské jméno pro zdroj ke spravování jeho přístupu."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Odměnit zaměstnance"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Odměnit zaměstnance s"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Vybraný zaměstnanec neodpovídá vybranému uživateli."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Za co jsi vděčný?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Odznak si nemůžete poslat sami sobě."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Odznaky můžete odesílat pouze zaměstnancům propojeným s uživatelem."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "odměnit tohoto zaměstnance za dobrou akci"
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/da.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/da.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Mads Søndergaard, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Mads Søndergaard, 2024\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Et mål er defineret via en bruger og en måltype.\n"
|
||||
" Mål kan genereres automatisk ved at anvende udfordringer."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Alle medarbejderes badges er linket til medarbejderen, enten direkte eller "
|
||||
"gennem en bruger"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Tildel en liste af mål til udvalgte brugere for at evaluere dem.\n"
|
||||
" En udfordring kan anvende periode (uge, måned...) til automatisk at generere mål.\n"
|
||||
" Mål oprettes for de specificerede brugere eller medlemmer af en gruppen."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Badges er belønninger af godt arbejde. Giv dem til folk, du mener fortjener "
|
||||
"det."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Badges der er linket direkte til medarbejderen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Standard ansat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Udfordringer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Opret en ny udfordring"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Opret et nyt mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Beskriv hvad de gjorde og hvilken forskel det gjorde (vil være offentlig)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Direkte badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Medarbejder"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Medarbejder badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Medarbejder HR mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Gamificerings emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Gamificering Bruger emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Gamificering Bruger emblem guide"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Målhistorik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Tildel et badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Tildel denne medarbejder deres første emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Tildelt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Tildelte medarbejdere antal"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Har badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Belønning"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Brugernavn for ressourcen til styring af brugeradgang."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Beløn medarbejder"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Beløn medarbejder med"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Den valgte medarbejder svarer ikke til den benyttede bruger."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Hvad er du taknemmelig for?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Du kan ikke tildele dig selv et emblem."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Du kan kun sende badges til medarbejdere der er linket til en bruger. "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "for at belønne denne medarbejder for en god indsats"
|
||||
254
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/de.po
Normal file
254
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/de.po
Normal file
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Ein Ziel wird durch einen Benutzer und einen Zieltyp festgelegt.\n"
|
||||
" Ziele können automatisch durch Verwendung von Herausforderungen angelegt werden."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Alle Mitarbeiterabzeichnen, die entweder direkt oder über den Benutzer mit "
|
||||
"dem Mitarbeiter verknüpft sind"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Weisen Sie ausgewählten Benutzern eine Liste von Zielen zu, um sie zu bewerten.\n"
|
||||
"Die Herausforderung kann einen Zeitraum (wöchentlich, monatlich...) für die automatische Erstellung von Zielen verwenden.\n"
|
||||
"Die Ziele werden für die angegebenen Benutzer oder Gruppenmitglieder erstellt."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Abzeichen sind Belohnungen für gute Arbeit. Belohnen Sie so die Mitarbeiter,"
|
||||
" die sich eine Anerkennung verdient haben."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Abzeichen, die direkt mit dem Mitarbeiter verknüpft sind"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Basismitarbeiter"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Herausforderungen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Eine neue Herausforderung erstellen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Ein neues Ziel erstellen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Erklären Sie, warum der Mitarbeiter das Abzeichen erhält (ist öffentlich "
|
||||
"sichtbar)."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Direktes Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Mitarbeiter"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Mitarbeiter-Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Mitarbeiterziele"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Gamification-Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Gamification-Benutzer-Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Assistent für Gamification-Benutzer-Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Ziel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Zielerreichungshistorie"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Ein Abzeichen vergeben"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Verleihen Sie diesem Mitarbeiter sein erstes Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Vergeben"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Anzahl ausgezeichneter Mitarbeiter"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Hat Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Erhaltene Abzeichen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Zugehöriger Benutzername für die Ressource, um deren Zugriff zu verwalten."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Mitarbeiter belohnen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Mitarbeiter belohnen mit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
"Der ausgewählte Mitarbeiter entspricht nicht dem ausgewählten Benutzer."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Wofür sind Sie dankbar?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Sie können sich selbst keine Abzeichen verleihen."
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Es können nur Abzeichen an Mitarbeiter vergeben werden, die mit einem "
|
||||
"Benutzer verbunden sind."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ", um diesen Mitarbeiter für seine gute Arbeit zu belohnen"
|
||||
218
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/el.po
Normal file
218
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/el.po
Normal file
|
|
@ -0,0 +1,218 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:17+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Ακύρωση"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Υπάλληλος"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Σχετιζόμενο όνομα χρήστη του πόρου για τη διαχείριση της πρόσβασης."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Χρήστες"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:22
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:19
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/es.po
Normal file
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/es.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Una meta es definida por un usuario y una definición de meta.\n"
|
||||
" Las metas pueden ser creadas automáticamente usando desafíos."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Todas las insignias del empleado, vinculadas a él ya sea directamente o a "
|
||||
"través del usuario"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Asigne una lista de metas a los usuarios elegidos para evaluarlos.\n"
|
||||
" El desafío puede usar un periodo (semanal, mensual...) para la creación automática de metas.\n"
|
||||
" Las metas se crean para determinados usuarios o miembros del grupo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Insignias"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Las insignias son recompensas por un buen trabajo. Otórguelas a aquellas "
|
||||
"personas que cree que las merecen."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Insignias directamente relacionadas con el empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empleado básico"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Desafíos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Crear un nuevo desafío"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Crear una nueva meta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Describa qué hizo y por qué es importante (será público)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Insignia directa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Insignias del empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Metas de RR. HH. del empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Insignia de ludificación"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Insignia de usuario de ludificación"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Asistente de insignia de usuario de ludificación"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Meta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historial de metas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Otorgar una insignia"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Otorgue su primera insignia a este empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Otorgada"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Número de empleados a los que se ha otorgado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Tiene insignias"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Insignias recibidas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Usuario relacionado con el recurso para gestionar su acceso."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Recompensar al empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Recompensar al empleado con"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "El empleado seleccionado no corresponde con el usuario seleccionado."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "¿De qué está agradecido?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "No puede enviarse una insignia a si mismo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Solo puede enviar insignias a empleados vinculados a un usuario"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "para recompensar a este empleado por una buena acción"
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Una meta se define por un usuario y un tipo de meta.\n"
|
||||
" Las metas se pueden crear automáticamente al utilizar desafíos."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Todas las insignias del empleado, vinculadas de forma directa o a través del"
|
||||
" usuario"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Asigne una lista de metas a los usuarios elegidos para evaluarlos.\n"
|
||||
" El desafío puede usar un periodo (semanal, mensual...) para crear metas en automático.\n"
|
||||
" Las metas se crean para determinados usuarios o miembros del grupo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Insignias"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Las insignias son recompensas por un buen trabajo. Otórguelas a aquellas "
|
||||
"personas que cree que las merecen."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Insignias vinculadas directamente al empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empleado básico"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Desafíos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Crear un nuevo desafío"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Crear una nueva meta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Describa qué hizo y por qué es importante (será público)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Insignia directa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Insignias del empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Metas RR. HH. del empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Insignia de ludificación"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Insignia de usuario de ludificación"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Asistente de insignia de usuario de ludificación"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Meta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historial de metas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Otorgar una insignia"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Otorgue su primera insignia a este empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Otorgada"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Número de empleados a los que se ha otorgado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Tiene insignias"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Insignias recibidas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Usuario relacionado con el recurso para gestionar su acceso."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Recompensar al empleado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Recompensar al empleado con"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "El empleado seleccionado no corresponde con el usuario seleccionado."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "¿De qué está agradecido?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "No puede enviarse una insignia a usted mismo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Solo puede enviar insignias a empleados vinculados a un usuario"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "para recompensar a este empleado por una buena acción"
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/et.po
Normal file
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/et.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Aveli Kannel <aveli@avalah.ee>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Anna, 2023\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Kasutaja poolt on seatud eesmärk ja eesmärgi tüüp.\n"
|
||||
" Eesmärke saab luua automaatselt, kasutades väljakutseid."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Kõik töötaja tunnustusmärgid, mis on seotud töötajaga otseselt või läbi "
|
||||
"kasutajakonto"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Määrake valitud kasutajate hindamiseks eesmärkide nimekiri.\n"
|
||||
" Väljakutseid saab kasutada automaatseks eesmärkide loomiseks periooditi (iga nädal, iga kuu ... ).\n"
|
||||
" Eesmärgid on loodud määratud kasutajatele või grupi liikmele."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Tunnustusmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Märgid on tunnustused hea töö eest. Anna neid inimestele, kes teie meelest "
|
||||
"väärivad seda."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Töötajaga otseselt seotud tunnustusmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Keskmine töötaja"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Tühista"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Väljakutsed"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Loo uus väljakutse"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Loo uus eesmärk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Kirjelda, mille eest premeerid töötajat tunnustusmärgiga"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Otsene tunnustusmärk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Töötaja"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Töötaja tunnustusmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Töötaja personali eesmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Tunnustusmärk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Kasutaja tunnustusmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Juhend \"Kasutaja tunnustusmärgid\""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Eesmärk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Eesmärkide ajalugu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Andke tunnustusmärk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Andke sellele töötajale esimene tunnustusmärk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Tunnustatud"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Tunnustatud töötajate arv"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Olemasolevad tunnustusmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Saadud tunnustusmärgid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Seotud kasutajanimi ressursi juurdepääsu haldamiseks."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Tunnusta töötajat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Tunnusta töötajat koos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Valitud töötaja ei vasta valitud kasutajale."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Mille üle olete tänulik?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Märki ei saa saata iseendale."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Te saate saata tunnustusmärgi ainult kasutajaga seotud töötajatele."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "tunnustada selle töötaja head tegevust"
|
||||
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/eu.po
Normal file
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/eu.po
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fa.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fa.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Farid Hariri <fhari1234@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Farid Hariri <fhari1234@gmail.com>, 2023\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"یک هدف توسط یک کاربر و یک تعریف هدف تعریف می شود.\n"
|
||||
" اهداف می تواند به طور خودکار با استفاده از چالشها ایجاد کرد."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"تمام نشانهای کارمند، مرتبط با کارمند چه به طور مستقیم و چه از طریق کاربر"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"فهرستی از اهداف را به کاربران انتخاب شده اختصاص داده تا آنها را ارزیابی کنید.\n"
|
||||
" چالش می تواند یک دوره (هفتگی، ماهانه...) برای ایجاد خودکار اهداف استفاده کنید.\n"
|
||||
" اهداف برای کاربران مشخص شده یا عضو گروه ایجاد می شود."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "بجها"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"نشانها، پاداش کار خوب هستند. آنها را به کسانی بدهید که باور دارید لياقتش "
|
||||
"را دارند."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "نشانها به طور مستقیم به کارمند مرتبط شده"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "کارمند پایه"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "چالشها"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "یک چالش جدید ایجاد کنید"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "یک هدف جدید ایجاد کنید"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "آنچه را که انجام دادند و چرا اهمیت دارد توضیح دهید (علنی خواهد شد)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "نشان مستقیم"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "کارمند"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "نشان کارمند"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "اهداف منابع انسانی- کارمند"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "نشان گیمیفیکیشن"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "نشان کاربر برای ایجاد انگیزش"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "ویزارد نشان کاربر برای ایجاد انگیزش"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "هدف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "تاریخچه اهداف"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "اعطای یک نشان"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "به این کارمند اولین نشانش را اعطا کن"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "اعطاشده"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "تعداد کارکنان اعطاشده"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "دارای نشان"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "نشانهای دریافتی"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "نام کاربری مرتبط برای منبع برای مدیریت حق دسترسی آن."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "پاداش کارمند"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "پاداش کارمند با"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "کارمند انتخاب شده با کاربر انتخاب شده مطابقت ندارد."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "از چه چیزی ممنون هستید؟"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "شما نمیتوانید برای خود نشان ارسال کنید."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"شما می توانید نشان ها را فقط برای کارمندان مرتبط با یک کاربر ارسال کنید."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "برای پاداش دادن به این کارمند برای یک اقدام خوب"
|
||||
253
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fi.po
Normal file
253
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fi.po
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Topi Aura <topi@aurat.fi>, 2022
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Kari Lindgren <karisatu@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Tavoite määritellään käyttäjän ja tavoitetyypin avulla.\n"
|
||||
" Tavoitteet voidaan luoda automaattisesti käyttämällä haasteita."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Kaikki tunnuskortit joko suoraan tai käyttäjän kautta työntekijään "
|
||||
"kytkettynä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Määritä luettelo tavoitteista valituille käyttäjille niiden arvioimiseksi.\n"
|
||||
" Haasteessa voidaan käyttää ajanjaksoa (viikoittain, kuukausittain...) tavoitteiden automaattista luomista varten.\n"
|
||||
" Tavoitteet luodaan määritetyille käyttäjille tai ryhmän jäsenille."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Ansiomerkit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Arvomerkit ovat palkintoja hyvästä työstä. Anna niitä ihmisille, joiden "
|
||||
"uskot ansaitsevan ne."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Suoraan työntekijään liittyvät merkit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Normaali työntekijä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Haasteet"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Luo uusi haaste"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Luo uusi tavoite"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Kirjoita kuvaus mistä hyvästä ansiomerkki myönnettiin (julkinen tieto)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Suora merkki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Työntekijä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Työntekijän ansiomerkit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Työntekijän HR tavoitteet"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Pelillistämisen ansiomerkki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Pelillistämisen käyttäjän ansiomerkki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Ohjattu pelillistämisen ansiomerkkien luonti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Tavoite"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Tavoitehistoria"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Myönnä ansiomerkki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Myönnä tälle työntekijälle hänen ensimmäinen merkkinsä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Myönnetty"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Myönnetty Työntekijöiden lukumäärä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "On ansiomerkkejä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Vastaanotetut ansiomerkit"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Liittyvä käyttäjätunnus resurssille sen oikeuksien määrittämiseksi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Palkitse työntekijää"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Palkitse työntekijää "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Valittu työntekijä ei vastaa valittua käyttäjää."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Mistä olet kiitollinen?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Et voi lähettää merkkiä itsellesi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Voit myöntää arvimerkin vain työntekijälle, joka on kytketty käyttäjään."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "palkitakseen tätä työntekijää hyvästä toiminnasta"
|
||||
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fo.po
Normal file
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fo.po
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Strika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fr.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/fr.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Un objectif est défini par un utilisateur et un type d'objectif.\n"
|
||||
"Les objectifs peuvent être créés automatiquement en utilisant des défis."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Tous les badges de l'employé, qu'ils lui soient affectés directement ou via "
|
||||
"son utilisateur Odoo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Attribuer une liste d'objectifs aux utilisateurs choisis pour les évaluer.\n"
|
||||
"Le défi peut utiliser une période (hebdomadaire, mensuelle ...) pour la création automatique d'objectifs.\n"
|
||||
"Les objectifs sont créés pour les utilisateurs ou pour les membres du groupe spécifiés."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Les badges sont une reconnaissance du bon travail. Donnez-les aux personnes "
|
||||
"que les méritent selon vous."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Badges directement liés à l'employé"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Employé de base"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Défis"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Créer un nouveau défi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Créer un nouvel objectif"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Décrire ce qu'ils ont fait et pourquoi c'est intéressant (informations "
|
||||
"publiques)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Badge direct"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Employé"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Badges d'employés"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Objectifs pour les employés"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Badge de ludification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Badge d'utilisateur de ludification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Assistant de badge d'utilisateur de ludification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Objectif"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historique des objectifs"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Attribuer un badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Accordez son premier badge à cet employé"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Délivré"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Nombre d'employés bénéficiaires"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Possède des badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Badges attribués"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Utilisateur associé à la ressource pour gérer les droits d'accès."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Récompenser un employé"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Récompenser un employé avec"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "L'employé sélectionné ne correspond pas à l'utilisateur sélectionné."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "De quoi êtes-vous reconnaissant ?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Vous ne pouvez pas vous envoyer un badge à vous-même."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "On ne peut attribuer de badges qu'aux employés liés à un utilisateur."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "récompenser un employé pour une action positive"
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/gl.po
Normal file
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/gl.po
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/gu.po
Normal file
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/gu.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/he.po
Normal file
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/he.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# yizhaq agronov <yizhaq@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# yael terner, 2023
|
||||
# or balmas, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: or balmas, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"היעד מוגדר על ידי משתמש וסוג יעד.\n"
|
||||
"ניתן ליצור יעדים באופן אוטומטי על ידי שימוש באתגרים."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "תגים"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "עובד רגיל"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "אתגרים"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "יצירת אתגר חדש"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "יצירת יעד חדש"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "תאר מה הם עשו ולמה זה חשוב (יהיה פומבי)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "תג ישיר"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "עובד"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "תג משחק"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "משחוק תג משתמש"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "יעד"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "היסטוריה של יעדים"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "ספירת עובדים מוענקת"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "יש תגים"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "שם משתמש קשור למשאב לניהול הגישה שלו."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
239
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hi.po
Normal file
239
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hi.po
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "रद्द"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "कर्मचारी"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "उपयोगकर्ता"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hr.po
Normal file
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hr.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Milan Tribuson <one.mile.code@gmail.com>, 2022
|
||||
# Davor Bojkić <davor.bojkic@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tina Milas, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
# Kristina Palaš, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Kristina Palaš, 2024\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Cilj je definiran korisnikom i tipom cilja.\n"
|
||||
"Ciljevi mogu biti kreirani automatski korištenjem izazova."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "Sve značke dodijeljene zaposleniku, izravno ili preko korisnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Dodijelite listu ciljeva odabranim korisnicima da ih ocijenite. Izazovi se mogu koristiti u periodu (tjedno, mjesečno..) za automatsko kreiranje ciljeva. \n"
|
||||
"Ciljevi se kreiranju za odabrane korisnike ili članove grupa."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Značke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Značke su nagrada za dobar posao. Dodijelite ih ljudima koji ih zaslužuju."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Značke izravno povezane sa zaposlenikom"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Obični zaposlenik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Izazovi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Kreiraj novi izazov"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Kreiraj novi cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Opišite što su učinili i zašto je to važno (biti će javno vidljivo)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Izravna značka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Zaposlenik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Značke djelatnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Ciljevi djelatnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Značka izazova"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Korisnička značka igre"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Povijest ciljeva"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Nagradi značkom"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Dodijelite ovom zaposleniku njegovu prvu značku"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Dodjeljeno"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Ima značke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Primljene značke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Korisničko ime povezano je s pristupom i upravljanjem modulima"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Nagradite djelatnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Nagradite djelatnika sa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Odabrani djelatnik ne odgovara odabranom korisniku."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Za što ste zahvalni?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Ne možete poslati značku sami sebi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Značke možete poslati samo djelatnicima povezanima sa korisnicima."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "da nagradite ovog djelatnika za dobru akciju"
|
||||
|
|
@ -0,0 +1,234 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
254
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hu.po
Normal file
254
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hu.po
Normal file
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# krnkris, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
# Valics Lehel, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Valics Lehel, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"A célt a felhasználó és a cél típusa határozza meg.\n"
|
||||
" Célokat automatikusan is létrehozhatja a kihívások használatával."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Összes alkalmazotti jelvény, hozzá csatolva az alkalmazotthoz direktben vagy"
|
||||
" a felhasználón keresztül"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Hozzárendelhet egy, a felhasználók által kiválasztható cél listát, melyből kiértékelheti Őket. \n"
|
||||
"A felmérés használhat egy időszakot (heti, havi...) a célok automatikus létrehozásához.\n"
|
||||
"A célt az ide vonatkozó felhasználóhoz vagy egy csoport tagjához hozza létre."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Jelvények"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Kitűzők a jó munkáért járó jutalmak. Azoknak az embereknek adja akik, "
|
||||
"véleménye szerint megérdemlik."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Jelvény hozzákapcsolva az alkalmazotthoz"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Egyszerű munkavállaló"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Kihívás"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Új kihívás"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Új cél"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Írja le mit csinált és az miért számított (nyilvános lesz)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Alkalmazott"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Munkavállalói kitüntetések"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Munkavállaló Emberi erőforrás HR célok"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Játékosítási jelvény"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cél"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Célok történetei"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Egy kitüntetést adományoz"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Kitüntetett"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Kitüntetett"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Megkapott kitüntetések"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Az erőforráshoz kapcsolódó felhasználó neve, aki annak hozzáférését kezeli."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Alkalmazott jutalmazás"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Alkalmazott jutalmazás ezzel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
"A kiválasztott munkavállaló nincs összhangban a kiválasztott felhasználóhoz."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Mire hálás?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Önmagának nem küldhet jelvényt."
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Csak a felhasználóhoz kötött munkavállalóknak tud jelvényt küldeni."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "egy jó cselekedetért jutalmazza meg ezt a munkavállalót"
|
||||
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hy.po
Normal file
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/hy.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/id.po
Normal file
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/id.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Goal didefinisikan oleh user dan tipe goal.\n"
|
||||
" Goal dapat dibuat secara otomatis menggunakan challenges."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Semua lencana karyawan, di-link ke karyawan baik langsung atau melalui user"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Berikan daftar goal ke user terpilih untuk mengevaluasi mereka.\n"
|
||||
" Challenge dapat menggunakan periode (mingguan, bulanan... for untuk pembuatan otomatis goal.\n"
|
||||
" Goal dibuat untuk user atau anggota spesifik dari kelompok."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Lencana"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Lencana imbalan kerja yang baik. Beri mereka kepada orang-orang yang Anda "
|
||||
"percaya layak mendapatkannya."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Q"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Karyawan Dasar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Tantangan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Buat tantangan baru"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Buat goal baru"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Jelaskan apa yang mereka lakukan dan mengapa itu penting (akan public)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Lencana Langsung"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Karyawan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Lencana karyawan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Gol HR karyawan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Lencana Gamifikasi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Lencana User Gamifikasi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Wizard Lencana User Gamifikasi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Target"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Gol Sejarah"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Memberikan sebuah Badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Berikan karyawan ini lencana pertama mereka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Diberika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Jumlah Karyawan yang Diberika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Memiliki Lencana"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Lencana menerima"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Nama pengguna terkait untuk sumber daya untuk mengelola aksesnya."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Reward Karyawan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Reward Karyawan dengan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Karyawan yang dipilih tidak sesuai dengan pengguna yang dipilih."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Apa yang Anda syukuri?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Anda tidak dapat mengirimkan lencana ke diri sendiri."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Anda dapat mengirim lencana hanya untuk karyawan terkait dengan pengguna."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "untuk menghargai karyawan ini untuk tindakan yang baik"
|
||||
236
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/is.po
Normal file
236
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/is.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# jonasyngvi, 2024
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Eyða"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
248
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/it.po
Normal file
248
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/it.po
Normal file
|
|
@ -0,0 +1,248 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Un obiettivo è definito da un utente e da una tipologia.\n"
|
||||
" Possono essere creati automaticamente attraverso le sfide."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Tutti i riconoscimenti, collegati direttamente al dipendente o attraverso "
|
||||
"l'utente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Assegna un elenco di obiettivi per valutare utenti selezionati.\n"
|
||||
" La sfida può utilizzare un periodo (settimanale, mensile...) per creare gli obiettivi in modo automatico.\n"
|
||||
" Vengono creati per gli utenti o gli iscritti al gruppo specificati."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Riconoscimenti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"I riconoscimenti sono premi per un buon lavoro. Assegnarli a persone "
|
||||
"ritenute meritevoli."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Riconoscimenti collegati direttamente al dipendente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Dipendente base"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Sfide"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Crea una nuova sfida"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Crea un nuovo obiettivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Descrivi ciò che hanno fatto e perché è importante (verrà reso pubblico)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Riconoscimento diretto"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Dipendente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Riconoscimenti del dipendente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Obiettivi RU del dipendente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Riconoscimento gamification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Riconoscimento utente gamification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Procedura per riconoscimento utente gamification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Obiettivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Cronologia obiettivi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Assegna un riconoscimento"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Assegna al dipendente il primo riconoscimento"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Assegnati"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Numero assegnazioni ai dipendenti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Possiede riconoscimenti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Riconoscimenti ricevuti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Nome utente correlato per gestire l'accesso alla risorsa."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Premia dipendente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Premia dipendente con"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Il dipendente selezionato non corrisponde all'utente selezionato."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Motivo di riconoscenza"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Impossibile inviare un riconoscimento a se stessi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"I riconoscimenti possono essere inviati solo a dipendenti collegati a un "
|
||||
"utente."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "per premiare un dipendente per una buona azione"
|
||||
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ja.po
Normal file
245
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ja.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2022
|
||||
# Junko Augias, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Junko Augias, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"目標は、ユーザと目標タイプによって定義されます。\n"
|
||||
" チャレンジを使用して目標を自動的に作成できます。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "従業員に直接または、ユーザーを通じてリンクされた、すべての従業員バッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"選ばれたユーザーに評価のために目標のリストを割り当てます。\n"
|
||||
" 課題は、目標の自動作成に期間(毎週、毎月...)を使用することができます。\n"
|
||||
" 目標は、指定されたユーザーまたはグループのメンバー用に作成されます。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "バッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr "バッジは良い仕事への報奨です。 あなたがそれに値すると信じている人々にそれらを与えます。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Badges directly linked to the employee"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "基本社員"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "課題・目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "新しいチャレンジを作成しましょう"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "新しい目標を作成しましょう。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "彼らが何をしたのか、なぜそれが重要なのかを説明する(公開する)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "ダイレクトバッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "従業員"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "従業員バッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "従業員のHR目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "ゲーミフィケーションのバッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "ゲーミフィケーションのバッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "ゲーミフィケーションユーザのバッジウィザード"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "達成履歴"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "バッジを付与"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "この従業員に1つ目のバッジを付与しましょう"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "付与済"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "付与済の従業員数"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "バッジを所有しているか"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "受け取ったバッジ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "そのアクセスを管理するためのリソースに関連するユーザ名"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "従業員にリワード付与"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "従業員にリワード付与"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "選択した従業員が選択されたユーザに対応していません。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "あなたは何のために感謝していますか?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "自分自身にバッジを付与することはできません。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "バッジは、ユーザにリンクされている従業員にのみ送信できます。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "従業員の良い行動を報奨する"
|
||||
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ka.po
Normal file
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ka.po
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "შეწყვეტა"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Sefsex"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/km.po
Normal file
246
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/km.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"គោលដៅត្រូវបានកំណត់ដោយអ្នកប្រើប្រាស់និងប្រភេទគោលដៅ។\n"
|
||||
" គោលដៅអាចត្រូវបានបង្កើតដោយស្វ័យប្រវត្តិដោយប្រើការប្រកួតប្រជែង។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"ផ្លាកសញ្ញានិយោជិកទាំងអស់ត្រូវបានផ្សារភ្ជាប់ទៅនឹងនិយោជិកដោយផ្ទាល់ឬតាមរយៈអ្នកប្រើប្រាស់។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"ចាត់តាំងបញ្ជីគោលដៅដល់អ្នកប្រើប្រាស់ដែលបានជ្រើសរើសដើម្បីវាយតម្លៃពួកគេ។\n"
|
||||
" បញ្ហាប្រឈមអាចប្រើរយៈពេល (ប្រចាំសប្តាហ៍ប្រចាំខែ ... ) សម្រាប់ការបង្កើតគោលដៅដោយស្វ័យប្រវត្តិ។\n"
|
||||
" គោលដៅត្រូវបានបង្កើតឡើងសម្រាប់អ្នកប្រើប្រាស់ឬសមាជិកក្រុម។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "សញ្ញា"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"ផ្លាកសញ្ញាគឺជារង្វាន់នៃការងារល្អ។ ផ្តល់ឱ្យពួកគេទៅមនុស្សដែលអ្នកជឿថាសមនឹងវា។ "
|
||||
"ចំណាំអ្នកអភិវឌ្ឍន៍។ ម៉ូឌុល៖ hr_gamification ។ វាយការបកប្រែរបស់អ្នកនៅទីនេះ។ "
|
||||
"រក្សាទុកការបកប្រែ។ បរិបទ។ ការផ្តល់យោបល់។ ប្រវត្តិសាស្រ្ត។ សទ្ទានុក្រម។ ៣ "
|
||||
"យោបល់។ ភាពស្របគ្នា។ មិនមានការណែនាំទេ។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "ផ្លាកសញ្ញាភ្ជាប់ដោយផ្ទាល់ជាមួយនិយោជិក។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "លុបចោល"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "ឧបសគ្គ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "បង្កើតបញ្ហាប្រឈមថ្មី។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "បង្កើតគោលដៅថ្មី។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "រៀបរាប់ពីអ្វីដែលពួកគេបានធ្វើនិងមូលហេតុដែលវាសំខាន់ (នឹងមានជាសាធារណៈ)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "ផ្លាកសញ្ញាផ្ទាល់"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "បុគ្គលិក"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "ផ្លាកសញ្ញារបស់និយោជិក"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "គោលដៅធនធានមនុស្សរបស់បុគ្គលិក"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "ផ្លាកហ្គាម៉ា"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "ផ្លាកសញ្ញាអ្នកប្រើហ្គាស"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "អ្នកជំនួយការផ្លាកសញ្ញាអ្នកប្រើហ្គាស"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "គោលដៅ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "ប្រវត្តិសាស្រ្តគោលដៅ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "ផ្តល់ផ្លាកសញ្ញា"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "ផ្តល់ឱ្យផ្លាកសញ្ញាដំបូងរបស់និយោជិកនេះ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "បានផ្តល់"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "ចំនួននិយោជិកដែលទទួលបានការអនុញ្ញាត"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "មានផ្លាកសញ្"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "ទទួលបានផ្លាកសញ្ញា"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "ឈ្មោះអ្នកប្រើដែលពាក់ព័ន្ធសម្រាប់ធនធានដើម្បីគ្រប់គ្រងការចូលប្រើរបស់វា។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "និយោជិករង្វាន់"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "ផ្តល់រង្វាន់ដល់និយោជិកជាមួយ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "និយោជិកដែលបានជ្រើសរើសមិនត្រូវគ្នានឹងអ្នកប្រើប្រាស់ដែលបានជ្រើសរើសទេ។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "តើអ្នកអរគុណអ្វីខ្លះ?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "អ្នកមិនអាចផ្ញើផ្លាកសញ្ញាទៅខ្លួនអ្នកបានទេ។"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "អ្នកអាចផ្ញើផ្លាកសញ្ញាទៅតែនិយោជិកដែលភ្ជាប់ទៅនឹងអ្នកប្រើប្រាស់"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "ដើម្បីផ្តល់រង្វាន់ដល់បុគ្គលិកនេះសម្រាប់សកម្មភាពល្អ"
|
||||
240
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ko.po
Normal file
240
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ko.po
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"목표는 사용자와 목표 유형에 의해 정의됩니다.\n"
|
||||
" 도전 과제를 사용하여 목표를 자동으로 생성할 수 있습니다."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "직원에게 직접 또는 사용자를 통해 링크된 모든 직원 배지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"선택한 사용자에게 목표 목록을 할당하여 평가합니다.\n"
|
||||
" 이 도전 과제는 자동으로 목표를 생성하기 위한 기간(매주, 매월...)을 사용할 수 있습니다.\n"
|
||||
" 지정된 사용자 또는 그룹 구성원에 대해 목표가 생성됩니다."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "뱃지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr "배지는 열심히 일한 보상입니다. 그럴만한 자격이 있다고 믿는 사람들에게 보내주십시오."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "직원과 직접 연결된 배지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "기본 직원"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "도전 과제"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "새 도전 과제 만들기"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "새 목표 만들기"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "그들이 무엇을 했는지, 그리고 왜 그것이 중요한지 설명하세요(공개될 것입니다)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "직접 배지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "임직원"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "직원 배지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "직원 인사 목표"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "업적 배지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "업적 사용자 배지"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "업적 사용자 배지 마법사"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "목표"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "목표 이력"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "배지 수여"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "이 직원에게 첫 번째 배지 부여"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "수여함"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "수여된 직원 수"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "배지 보유"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "배지를 받음"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "접근 권한을 관리할 자원의 관련 사용자 이름."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "직원 포상"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "직원에게 다음을 포상"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "선택한 직원이 선택한 사용자와 일치하지 않습니다."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "무엇이 감사한가요?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "배지는 자신에게 보낼 수 없습니다."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "사용자로 연결된 직원에게만 배지를 보낼 수 있습니다."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "좋은 행동에 대해 이 직원에게 포상"
|
||||
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lb.po
Normal file
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lb.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-12 11:32+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:10+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:22
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:19
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lo.po
Normal file
237
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lo.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# sackda chanthasombath, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "ຍົກເລີກ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "ພະນັກງານ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lt.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lt.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: digitouch UAB <digitouchagencyeur@gmail.com>, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Tikslas yra nustatomas pagal vartotoją ir tikslo tipą.\n"
|
||||
"Tikslai gali būti sukuriami automatiškai, naudojant iššūkius."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Visi darbuotojo ženkleliai, susieti su darbuotoju tiesiogiai arba per "
|
||||
"vartotoją"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Kad galėtumėte juos įvertinti, pasirinktiems vartotojams priskirkite tikslų sąrašą.\n"
|
||||
"Iššūkis gali naudoti laiko tarpą (savaitė, mėnuo...) automatiniam tikslų kūrimui.\n"
|
||||
"Tikslai yra sukuriami konkretiems nariams arba grupės nariams."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Ženkleliai"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"ženkleliai yra apdovanojimas už gerą darbą. Duokite juos žmonėms, kurie jų "
|
||||
"nusipelno."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Ženkleliai, tiesiogiai susiję su darbuotoju"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Iššūkiai"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Sukurkite naują iššūkį"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Sukurkite naują tikslą"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Apibūdinkite, ką jie padarė ir kodėl tai svarbu (bus paviešinta)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Tiesioginis ženklelis"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Darbuotojas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Darbuotojo ženkleliai"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Darbuotojo tikslai"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Sužaidybinimo ženklelis"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Sužaidybinimo vartotojo ženklelis"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Sužaidybinimo vartotojo ženklelio vedlys"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Tikslas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Tikslų istorija"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Suteikti ženklelį"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Suteikite šiam darbuotojui jo pirmąjį ženklelį"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Suteikta"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Apdovanotų darbuotojų kiekis"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Turi ženklelių"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Gauti ženkleliai"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Susijusio vartotojo vardas ištekliaus prieigai valdyti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Apdovanoti darbuotoją"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Apdovanoti darbuotoją su"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Pasirinktas darbuotojas nesutampa su pasirinktu vartotoju."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Už ką esi dėkingas?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Negalite siųsti ženklelio sau."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Galite siųsti ženklelius tik darbuotojams, susietiems su vartotoju."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "apdovanoti šį darbuotoją už gerą darbą"
|
||||
242
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lv.po
Normal file
242
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/lv.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Anzelika Adejanova, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Vārda birka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Pamata darbinieks"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Izaicinājumi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Darbinieks"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Spēliskošanas emblēma"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Mērķu vēsture"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Ar resursu saistītā lietotāja vārds tā piekļuves pārvaldīšanai."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/mk.po
Normal file
207
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/mk.po
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
236
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ml.po
Normal file
236
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ml.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Hasna, 2023
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "ബാഡ്ജുകൾ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "അടിസ്ഥാന ജീവനക്കാരൻ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "റദ്ദാക്കുക"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "എംപ്ലോയീ "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "ഗാമിഫിക്കേഷൻ ബാഡ്ജ്"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/mn.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/mn.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Зорилгыг гишүүн ба зорилгын төрөл тодорхойлно.\n"
|
||||
"Сорилтуудыг ашиглан зорилгыг автоматаар үүсгэж болно."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Ажилтанд шууд эсвэл хэрэглэгчээр дамжин холбогдсон ажилтны бүх медалиуд"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Хэрэглэгчдийг үнэлэх зорилгоор зорилгын жагсаалтыг онооно. \n"
|
||||
"Сорилт нь зорилтуудыг автоматаар үүсгэхээр мөчлөгүүдийг (7 хоногоор, сараар...) хэрэглэж болно. \n"
|
||||
"Зорилго нь хэрэглэгчдэд тусгайлан эсвэл бүлгэмд үүсгэгдэж болно."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Медаль"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Медаль нь ямарваа сайн ажлын шагнал юм. Медалийг хүртэх ёстой гэж үзсэн "
|
||||
"хүмүүстээ өгнө үү."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Ажилтантай шууд холбогдсон медалиуд"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Үндсэн ажилтан"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Цуцлах"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Сорилтууд"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Тэд юу хийсэн болон яагаад хэрэгтэй болох талаар тайлбарла (нийтэд ил байх "
|
||||
"болно)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Ажилтан"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Ажилтны медалиуд"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Ажилтны хүний нөөцийн зорилтууд"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Зорилго"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Зорилгын түүх"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Медалийг батламжлах"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Батламжилсан"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Медалтай юу"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Хүлээн авсан медалиуд"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Нөөцөд хандах эрх бүхий холбогдох хэрэглэгчийн нэр"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Ажилтныг шагнах"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Ажилтныг шагнах"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Сонгосон ажилтан нь сонгосон хэрэглэгчтэй харгалзаагүй."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Та юунд талархаж байгаа вэ?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Та зөвхөн хэрэглэгчтэй холбогдсон ажилчинд л медаль илгээх боломжтой."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "энэ ажилтныг сайн үйлийн төлөө шагнах"
|
||||
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ms.po
Normal file
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ms.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Pekerja"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
243
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/nb.po
Normal file
243
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/nb.po
Normal file
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Rune Restad, 2024\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Et mål defineres av en bruker og en måltype.\n"
|
||||
" Mål kan opprettes automatisk ved å bruke utfordringer."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "Alle ansattmedaljer tilknyttet den ansatte direkte eller via bruker"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Medaljer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Medaljer er belønning for godt utført arbeid. Gi dem til folk du mener "
|
||||
"fortjener det."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Vanlig ansatt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Kanseller"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Utfordringer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Forklar hva de gjorde og hvorfor det har betydning (vil være offentlig)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Ansatt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Spillifiseringsmedalje"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Målhistorikk"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Gi en medalje"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Tildelt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Har medaljer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Tilknyttet brukernavn for ressursen for å administrere tilgang."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Belønn ansatt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Belønn ansatt med"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Den valgte ansatte tilsvarer ikke den valgte brukeren."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Hva er du takknemlig for?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Du kan bare gi medaljer til ansatte tilknyttet en bruker."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "for å belønne den ansatte for en god handling"
|
||||
204
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ne.po
Normal file
204
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ne.po
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/nl.po
Normal file
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/nl.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Een doel wordt bepaald door een gebruiker en een doelsoort.\n"
|
||||
"Doelen kunnen automatisch gemaakt worden door gebruik te maken van uitdagingen. "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Alle werknemer badges, gekoppeld aan de werknemer direct of aan de gebruiker"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Wijs een lijst van doelen toe aan een groep gebruikers om ze te evalueren.\n"
|
||||
"De uitdaging kan over een periode lopen (week, maand...) om doelen automatisch aan te maken.\n"
|
||||
"De doelen worden aangemaakt voor de specifieke gebruikers of leden van een groep."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Badges zijn beloningen voor goed werk. Geef ze aan mensen waarvan je vind "
|
||||
"dat zij ze verdienen."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Badges direct gekoppeld aan de werknemer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Basis werknemer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Uitdagingen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Maak een nieuwe uitdaging aan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Maak een nieuw doel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Omschrijf wat ze hebben gedaan en waarom het belangrijk is (is openbaar)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Directe badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Werknemer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Personeelbadges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Werknemer doelstellingen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Gamificatie badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Gamificatie gebruikers badge"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Gamificatie gebruikers badge wizard"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Doel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Geschiedenis doelen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Badge toekennen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Ken deze werknemer zijn eerste badge toe"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Toegestaan"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Toegekende werknemers hoeveelheid"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Heeft badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Ontvangen badges"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Gekoppelde gebruikersnaam voor de resource om zijn toegang te beheren."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Beloon werknemer"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Beloon werknemer met"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
"De geselecteerde werknemer komt niet overeen met de geselecteerde gebruiker."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Waar ben je dankbaar voor?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Je kunt geen badge naar jezelf sturen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Je kunt alleen badges sturen naar werknemers die aan een gebruiker gekoppeld"
|
||||
" zijn."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "om deze werknemer te belonen voor een goede actie"
|
||||
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/no.po
Normal file
235
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/no.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Lars Aam <lars.aam@vikenfiber.no>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Lars Aam <lars.aam@vikenfiber.no>, 2023\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Kanseller"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
251
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/pl.po
Normal file
251
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/pl.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
|
||||
# Natalia Gros <nag@odoo.com>, 2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Karol Rybak <karolrybak85@gmail.com>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Cel i typ jest zdefiniowany przez użytkownika.\n"
|
||||
" Cele mogą być utworzone automatycznie przez używanie wyzwań."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Wszystkie odznaki pracownicze, powiązane z pracownikiem bezpośrednio lub "
|
||||
"poprzez użytkownika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Przypisz listę celów do wybranych użytkowników, aby je ocenić.\n"
|
||||
"Wyzwanie może wykorzystywać okres (tygodniowy, miesięczny...) do automatycznego tworzenia celów.\n"
|
||||
"Cele są tworzone dla określonych użytkowników lub członków grupy."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Odznaki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Odznaki to nagrody za dobrą pracę. Przyznawaj je osobom, które na nie "
|
||||
"zasługują."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Odznaki bezpośrednio związane z pracownikiem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Podstawowy pracownik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Wyzwania"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Utwórz nowe wyzwanie"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Utwórz nowy cel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Opisz co zrobili i dlaczego jest to ważne (widoczne dla wszystkich)."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Bezpośrednia odznaka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Pracownik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Odznaki pracownika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Cele kadrowe pracownika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Odznaka grywalizacji"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Odznaka użytkownika gamifikacji"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Kreator odznaki użytkownika gamifikacji"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historia celów"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Przyznaj odznakę"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Przyznaj temu pracownikowi jego pierwszą odznakę"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Przyznane"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Liczba pracowników którym przyznano"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Posiada odznaki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Otrzymane odznaki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Użytkownik powiązany z zasobem do zarządzania jego dostępnością"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Odznacz pracownika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Nagródź pracownika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Wybrany pracownik nie odpowiada wybranemu użytkownikowi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Za co dziękujesz?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Nie można wysłać odznaki do siebie."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Możesz przyznać odznaki tylko pracownikom powiązanym z użytkownikiem."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "by nagrodzić pracownika za dobrą pracę"
|
||||
252
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/pt.po
Normal file
252
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/pt.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Ricardo Correia <rcorreiavv@gmail.com>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2025
|
||||
# J Ponte, 2025
|
||||
# Daniel Reis, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Daniel Reis, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Um objetivo é definido por um utilizador e um tipo de objeto.\n"
|
||||
" Os objetivos podem ser criados automaticamente, utilizando desafios."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Atribua uma lista de objetivos aos utilizadores escolhidos para avaliá-los.\n"
|
||||
"O desafio pode usar um período (semanal, mensal ...) para criação automática de metas.\n"
|
||||
"As metas são criadas para os utilizadores especificados ou membros do grupo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Crachás"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Distintivos são fruto de um bom trabalho. Dê a pessoas que acredita merecer."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Funcionário básico"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Desafios"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Criar um novo desafio"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Criar um novo objetivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Descreva o que eles fizeram e por que é importante (será público)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Funcionário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Distintivo de Funcionário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Metas RH de Funcionário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Distintivo de Ludificação"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Medalha de Utilizador de Gamificação"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Assistente de Medalha de Utilizador de Gamificação"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Objectivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Histórico de Metas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Conceder um Distintivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Concedido"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Tem Distintivos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Recebeu Distintivos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Nome do utilizador relacionado para o recurso para gerir o seu acesso."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Prémio de Funcionário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Prémio de Funcionário com"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "O funcionário selecionado não corresponde ao utilizador seleccionado."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Pode enviar distintivos apenas aos funcionários vinculados a um utilizador."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "para recompensar este funcionário para uma boa ação"
|
||||
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Um objectivo é definido por um utilizador e um tipo de meta.\n"
|
||||
"As metas podem ser criadas automaticamente usando desafios."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Todos os distintivos de funcionários, vinculados ao funcionário diretamente "
|
||||
"ou por meio do usuário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Atribuir uma lista de objetivos aos usuários escolhidos para avaliá-los.\n"
|
||||
"O desafio pode usar um período (semanal, mensal ...) para a criação automática de metas.\n"
|
||||
"Os objetivos são criados para os usuários especificados ou membros do grupo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Distintivos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Medalhas são frutos de um bom trabalho. Dê-lhes a pessoas que acredita "
|
||||
"merecer."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Distintivos diretamente ligados ao empregado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empregado Básico"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Desafios"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Crie um novo desafio"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Crie um novo objetivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Descreva o que fizeram e por que é importante (será público)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Distintivo Direto"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Funcionário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Medalhas dos Funcionários"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Objetivos de RH dos Funcionários"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Medalha de Gamificação"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Distintivo de Usuário de Gamificação"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Assistente de Distintivo de Usuário de Gamificação"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Objetivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Histórico dos objetivos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Conceder uma medalha"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Conceda a este funcionário seu primeiro distintivo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Garantido"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Contagem de Funcionários Concedidos"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Tem Medalhas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Medalhas recebidas"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Usuário relacionado para o gerente controlar seus acessos."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Recompensar funcionário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Recompensar funcionário com"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "O funcionário selecionado não corresponde ao usuário selecionado"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Pelo que você é grato?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Você não pode enviar um distintivo para si mesmo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Você pode enviar medalhas somente para os funcionários vinculados a um "
|
||||
"usuário."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "Recompensar este funcionário por uma atividade bem executada"
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ro.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ro.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Un obiectiv este definit de un utilizator și de un tip de obiectiv. \n"
|
||||
"Obiectivele pot fi create automat folosind provocări."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Toate insignele angajaților, legate de angajat fie direct, fie prin "
|
||||
"intermediul utilizatorului"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Alocați o listă de obiective utilizatorilor aleși pentru a le evalua.\n"
|
||||
" Provocare poate folosi o perioadă (săptămânală, lunară ...) pentru crearea automată a obiectivelor.\n"
|
||||
" Obiectivele sunt create pentru utilizatorii sau membrii grupului specificați."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Insigne"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Insignele sunt recompense ale muncii bune. Dă-le oamenilor despre care crezi"
|
||||
" că merită."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Insigne legate direct de angajat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "BAngajat de bază"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Anulează"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Provocări"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Creați o nouă provocare"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Creați un nou obiectiv"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Descrieți ce au făcut și de ce contează (va fi public)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Insignă directă"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Angajat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Insigne angajați"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Obiective HR ale angajaților"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Insignă Competiție"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Ecuson Utilizator Comăpetiție"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Expert Ecuson Utilizator Competiție"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Obiectiv"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Istoria obiectivelor"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Acordă o insignă"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Acordă-i acestui angajat prima insignă"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Acordat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Numărul angajaților acordați"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Are insigne"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Insigne primite"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Numele utilizatorului asociat resursei pentru a-i gestiona accesul."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Recompensți angajatul"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Recompensați Angajatul cu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Angajatul selectat nu corespunde utilizatorului selectat."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Pentru ce esti recunoscator?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Nu vă puteți trimite o insignă."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Puteți trimite ecusoane numai angajaților conectați la un utilizator."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "pentru a recompensa acest angajat pentru o acțiune bună"
|
||||
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ru.po
Normal file
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ru.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2022
|
||||
# Ekaterina <nawsikaya@bk.ru>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Ivan Kropotkin <yelizariev@itpp.dev>, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Цель характеризуется пользователем и типом.\n"
|
||||
" Цели можно добавлять автоматически, создавая соревнования."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Все значки сотрудника, связанные с работником либо непосредственно, либо "
|
||||
"через пользователя"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Чтобы оценить неких пользователей, создайте для них список целей.\n"
|
||||
" Соревнование можно настроить так, что периодически (еженедельно, ежемесячно...) будут добавляться новые цели.\n"
|
||||
" Цели создаются для конкретных пользователей или членов группы."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Значки"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Значки - это награды за хорошую работу. Давайте их тем, кто, по вашему "
|
||||
"мнению, их заслужил."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Значки, непосредственно связанные с работником"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Сотрудник"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Соревнования"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Создать новое испытание"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Создать новую цель"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Опишите, что они сделали и почему это важно (будет в публичном доступе)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Прямой значок"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Сотрудник"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Значки сотрудников"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "HR-цели сотрудника"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Гемификация значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Гемификация пользовательского значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Помощник гемификации пользовательского значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Цель"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "История целей"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Наградить значком"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Наградите этого сотрудника его первым значком"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Награжденные"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Количество сотрудников с наградами"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Есть значки"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Полученные награды"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Пользователь, управляющий доступом к ресурсу."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Наградить сотрудника"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Наградить сотрудника"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Выбранный сотрудник не соответствует выбранному пользователю."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "За что вас поблагодарили?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Вы не можете отправить самому себе значок."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Вы можете выдавать значки только сотрудникам, имеющим учётные записи."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "наградить этого сотрудника за хорошие действия"
|
||||
244
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sk.po
Normal file
244
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sk.po
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Cieľ je definovaný používateľom a druhom cieľa.\n"
|
||||
"Cieľe môžu byť vytvorené automaticy použitím výziev."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Všetky zamestnanecké ocenenia spojené so zamestnancom buď priamo, alebo "
|
||||
"prostredníctvom užívateľa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Prideľte zoznam cieľov vybraným používateľom na ich zhodnotenie.\n"
|
||||
"Výzva môže používať obdobie (týždenne, mesačne...) pre automatické vytváranie cieľov.\n"
|
||||
"Cieľe su vytvorené pre špecifickovaných používateľov, alebo členov skupiny."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Odmena"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Odznaky sú odmenou dobrej práce. Dajte ich ľudom, o ktorých si myslíte že si"
|
||||
" ich zaslúžia."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Ocenenia priamo spojené so zamestnancom"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Základný zamestnanec"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušené"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Výzvy"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Vytvorte novú výzvu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Vytvorte nový cieľ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Popíšte čo spravili a prečo je to dôležité (bude zverejnené)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Priame ocenenie"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Zamestnanec"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Ocenenia zamestnancov"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "HR cieľe zamestnanca"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Ocenenie gemifikácie"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Ocenenie používateľa gamifikácie"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Sprievodca ocenením používateľa gamifikácie"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cieľ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "História cieľov"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Prideľte odznak"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Udeľte tomuto zamestnancovi jeho prvý odznak"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Udelené"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Počet pridelených zamestnancov"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Má odznak"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Obdržané ocenenia"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Súvisiace užívateľské meno pre zdroj na spravovanie jeho prístupu."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Odmeniť zamestnanca"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Odmeniť zamestnanca s"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Vybraný zamestnanec nezodpovedá vybranému používateľovi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Za čo ste vďačný?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Nemôžete si poslať ocenenie pre seba."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Môžete posielať odznaky iba zamestnancom prepojeným na používateľa."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "odmeniť tohto pracovníka za dobrú prácu"
|
||||
252
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sl.po
Normal file
252
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sl.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Vida Potočnik <vida.potocnik@mentis.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Cilj se določi glede na uporabnika in definicijo cilja.\n"
|
||||
" Cilji se lahko samodejno ustvarijo preko izzivov."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Vse značke zaposlenih, povezane z zaposlenim bodisi neposredno bodisi prek "
|
||||
"uporabnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
" Dodelitev seznama ciljev izbranim uporabnikom, da bi jih vrednotili.\n"
|
||||
" Izziv lahko uporabi obdobje (tedensko, mesečno...) za samodejno ustvarjanje ciljev.\n"
|
||||
" Cilji se ustvarijo za specifične uporabnike ali člane skupine."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Priponke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Priponke so nagrade za dobro opravljeno delo. Dodelite jih ljudem, ki si jih"
|
||||
" zaslužijo."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Značke, neposredno povezane z zaposlenim"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Osnovni zaposleni"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Prekliči"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Izzivi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Ustvari nov izziv"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Ustvari nov cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Opišite, kaj so naredili in zakaj je to pomembno (javna objava)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Neposredna značka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Kader"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Kadrovske priponke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Kadrovski cilji"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Značka za igrifikacijo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Uporabniška značka gamifikacije"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Čarovnik za uporabniške značke za gamifikacijo"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Kronologija ciljev"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Dodelitev priponke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "emu zaposlenemu podelite prvo značko"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Odobreno"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Število odobrenih zaposlenih"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Ima priponke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Prejete priponke"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Povezano uporabniško ime za vir za upravljanje njegovega dostopa."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Nagraditev kadra"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Nagraditev kadra z"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Izbrani kader ne ustreza izbranemu uporabniku."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Za kaj ste hvaležni?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Značke ne moreš poslati sam sebi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Priponke lahko pošljete le kadrom povezanimi z uporabniki"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "kot nagrada kadru za dobro dejanje"
|
||||
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sq.po
Normal file
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sq.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
248
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sr.po
Normal file
248
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sr.po
Normal file
|
|
@ -0,0 +1,248 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# Nemanja Skadric, 2024
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Cilj je definisan korisnikom i tipom cilja.\n"
|
||||
" Ciljevi se mogu kreirati automatski korišćenjem izazova."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Sve bedževe zaposlenih, povezane sa zaposlenim direktno ili preko korisnika"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Dodelite listu ciljeva odabranim korisnicima kako biste ih ocenili.\n"
|
||||
"Izazov može koristiti period (nedeljni, mesečni...) za automatsko kreiranje ciljeva.\n"
|
||||
"Ciljevi se kreiraju za određene korisnike ili članove grupe."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Bedževi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Značke su nagrade za dobar rad. Dajte ih ljudima za koje smatrate da to "
|
||||
"zaslužuju."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Značke direktno povezane sa zaposlenim"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Osnovni zaposleni"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Izazovi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Napravite novi izazov"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Kreiraj novi cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Opišite šta su uradili i zašto je to važno (biće javno)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Direktna oznaka"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Zaposleničke identifikacione kartice"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Zaposlenički HR ciljevi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Gamifikacija Bedž"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Gamifikacija korisnički bedževi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Gamifikacija Čarobnjak za korisničke bedževe"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Cilj"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Istorija ciljeva"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Dodeli odlikovanje"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Dodelite ovom zaposlenom njegov prvi bedž."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Odobreno"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Dodeljen broj zaposlenih"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Ima bedž"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Primljeni bedževi"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Povezani korisničko ime za resurs kako bi se upravljalo njegovim pristupom."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Nagradite zaposlenog "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Nagradite zaposlenog sa"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Izabrani zaposleni ne odgovara izabranom korisniku."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Na čemu bi zahvalili?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Ne možete poslati bedž sebi."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Možete slati bedževe samo zaposlenima povezanim sa korisnikom."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "nagrada za ovog zaposlenog zbog dobre akcije"
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Click to create a challenge."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Click to create a goal."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Click to grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard_employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification user badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users_goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:18
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:21
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:18
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "gamification.badge.user.wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
252
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sv.po
Normal file
252
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sv.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Haojun Zou <apollo_zhj@msn.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Peter Wickenberg <peter@wickenberg.nu>, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Anders Wallenquist <anders.wallenquist@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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Ett mål definieras av en användare och en måltyp.\n"
|
||||
"Mål kan skapas automatiskt genom att använda utmaningar."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Alla emblem för anställda, kopplade till arbetstagaren, antingen direkt "
|
||||
"eller via användaren"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Tilldela en lista över mål till utvalda användare för att utvärdera dem.\n"
|
||||
"Utmaningen kan sättas upp för en period (veckovis, månadsvis ...) för automatisk skapande av mål.\n"
|
||||
"Målen skapas för de angivna användarna eller medlemmen av gruppen."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Emblem är belöningar för bra arbete. Ge dem till människor du tycker "
|
||||
"förtjänar det."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Emblem direkt kopplade till arbetstagaren"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Grundläggande anställd"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Utmaningar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Skapa en ny utmaning"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Skapa ett nytt mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
"Beskriv vad de gjorde och varför det är viktigt (kommer att vara offentligt)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Direkt-emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Anställd"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Medarbetares emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Medarbetare HR mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Utmärkelse Gamification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Gamification användarutmärkelser"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Guide Gamification användarutmärkelser"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Historiska mål"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Bevilja ett emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Ge den här medarbetaren sin första utmärkelse"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Beviljat"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Antal beviljade medarbetare"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Innehavda emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Mottagna emblem"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
"Relaterat användarnamn för resursen vid administration av dess rättigheter"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Belöna medarbetare"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Belöna medarbetare med"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Den valda medarbetaren motsvarar inte den valda användaren."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Vad är du tacksam för?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Du kan inte skicka en utmärkelse till dig själv."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Du kan endast skicka emblem till anställda som är kopplade till en "
|
||||
"användare."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "att belöna denna anställd för ett bra åtgärd"
|
||||
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sw.po
Normal file
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/sw.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ta.po
Normal file
231
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/ta.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr ""
|
||||
241
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/th.po
Normal file
241
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/th.po
Normal file
|
|
@ -0,0 +1,241 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Wichanon Jamwutthipreecha, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"เป้าหมายถูกกำหนดโดยผู้ใช้และประเภทเป้าหมาย\n"
|
||||
" เป้าหมายสามารถสร้างขึ้นได้โดยอัตโนมัติโดยใช้ความท้าทาย"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "ป้ายพนักงานทั้งหมดเชื่อมโยงกับพนักงานโดยตรงหรือผ่านผู้ใช้"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"กำหนดรายการเป้าหมายให้กับผู้ใช้ที่เลือกเพื่อประเมิน\n"
|
||||
" ความท้าทายสามารถใช้ระยะเวลา (รายสัปดาห์ รายเดือน...) เพื่อสร้างเป้าหมายโดยอัตโนมัติ\n"
|
||||
" เป้าหมายถูกสร้างขึ้นสำหรับผู้ใช้ที่ระบุหรือสมาชิกของกลุ่ม"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "ป้ายรางวัล"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr "ป้ายเป็นรางวัลของการทำงานที่ดี มอบให้กับคนที่คุณเชื่อว่าสมควรได้รับ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "ป้ายเชื่อมโยงโดยตรงกับพนักงาน"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "พนักงานทั่วไป"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "การท้าทาย"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "สร้างความท้าทายใหม่"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "สร้างเป้าหมายใหม่"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "อธิบายว่าพวกเขาทำอะไรและเหตุใดจึงสำคัญ (จะเป็นสาธารณะ)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "ป้ายโดยตรง"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "พนักงาน"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "ป้ายพนักงาน"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "เป้าหมายของพนักงาน HR"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "ป้ายรางวัลในรูปแบบเกม"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "ป้ายผู้ใช้รูปแบบเกม"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "ตัวช่วยป้ายผู้ใช้รูปแบบเกม"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "เป้าหมาย"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "ประวัติเป้าหมาย"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "มอบป้ายรางวัล"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "มอบป้ายรางวัลแรกให้พนักงานคนนี้"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "มอบแล้ว"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "จำนวนพนักงานที่ได้รับ"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "มีป้าย"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "ได้รับป้ายรางวัล"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "ชื่อผู้ใช้ที่เกี่ยวข้องสำหรับทรัพยากรเพื่อจัดการการเข้าถึง"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "ให้รางวัลพนักงาน"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "ให้รางวัลพนักงานด้วย"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "พนักงานที่เลือกไม่ตรงกับผู้ใช้ที่เลือก"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "คุณรู้สึกขอบคุณอะไร?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "คุณไม่สามารถส่งป้ายรางวัลให้ตัวเองได้"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "คุณสามารถส่งป้ายรางวัลให้เฉพาะพนักงานที่เชื่อมโยงกับผู้ใช้เท่านั้น"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "เพื่อให้รางวัลแก่พนักงานสำหรับการกระทำที่ดี"
|
||||
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/tr.po
Normal file
249
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/tr.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Bir hedef bir kullanıcı ve bir hedef türü ile tanımlanır.\n"
|
||||
"Hedefler, yarışmalar üzerinden otomatik olarak oluşturulabilir."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Tüm personel rozetleri, personele doğrudan veya kullanıcı üzerinden bağlı"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Seçilmiş kulanıcılara, onları değerlendirmek için bir hedefler listesi atayın.\n"
|
||||
" Yarışma ile hedeflerin otomatik olarak oluşturulması için bir dönem (haftalık, aylık...) kullanılabilir.\n"
|
||||
" Hedefler belirlenmiş kullanıcılar ya da grup üyesi için oluşturulur."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Rozetler"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Rozetler iyi çalışmanın ödülüdür. Onu hakettiğine inandığınız kişilere "
|
||||
"verin."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Personele doğrudan bağlı rozetler"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Temel Personel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Yarışmalar"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Yeni bir yarışma oluştur"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Yeni bir hedef oluştur"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Ne yaptıklarını ve neden önemli olduğunu açıkla (herkes görebilecek)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Doğrudan Rozetler"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Personel"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Personel Rozetleri"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Personel İK Hedefleri"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Oyunlaştırma Rozeti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Oyunlaştırma Kullanıcı Rozeti"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Oyunlaştırma Kullanıcı Rozet Sihirbazı"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Hedef"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Hedef Kayıtları"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Bir Rozet Ver"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Bu çalışana ilk rozetini ver"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Verilen"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Verilen Personel Sayısı"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Rozeti Var"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Alınan Rozetler"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Kaynağın erişimini yönetmek için ilişkilendirilmiş kullanıcı."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Personeli Ödüllendir"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Personeli Ödüllendir"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Seçilen personel seçilen kullanıcıya karşılık gelmiyor."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Ne için müteşekkirsiniz?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Kendinize bir rozet gönderemezsiniz."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "Sadece bir kullanıcıya bağlı personele rozetleri gönderebilirsiniz."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "iyi bir eyleminden dolayı bu personeli ödüllendirmek için."
|
||||
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/uk.po
Normal file
247
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/uk.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Мета визначається користувачем та типом цілі.\n"
|
||||
"Цілі можуть створюватись автоматично за допомогою викликів. "
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Всі значки співробітників, пов'язані з працівником безпосередньо або через "
|
||||
"користувача"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Призначте список цілей для обраних користувачів для їх оцінки.\n"
|
||||
"Завдання може використовувати період (щотижня, щомісяця...) для автоматичного створення цілей.\n"
|
||||
"Цілі створені для вказаних користувачів або учасника групи."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Значки"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Значки - це нагорода за хорошу роботу. Дайте людям, які ви вважаєте "
|
||||
"заслуговують на це."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Значки, безпосередньо пов'язані з працівником"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Звичайний користувач"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Випробування"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Створити нове випробування"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Створити нову ціль"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Опишіть, що вони зробили і чому це важливо (буде загальнодоступним)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Особистий значок"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Співробітник"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Значки працівників"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Цілі персоналу відділу кадрів"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Геміфікація значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Геміфікація користувацького значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Помічник геміфікації користувацького значка"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Ціль"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Історія значків"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Надішліть значок"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Нагородіть цього співробітника його першим значком"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Надіслано"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Підрахунок виданих співробітникам"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Має значок"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Отримані значки"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Пов'язане ім'я користувача ресурсу для управління доступом."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Нагорода працівника"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Нагорода працівника з"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Вибраний працівник не відповідає вибраному користувачеві."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "За що ви вдячні?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Ви не можете надіслато самому собі значок."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Ви можете відправляти значки лише співробітникам, пов'язаним із "
|
||||
"користувачем."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "винагородити цього працівника за хорошу дію"
|
||||
251
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/vi.po
Normal file
251
odoo-bringout-oca-ocb-hr_gamification/hr_gamification/i18n/vi.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"Một Mục tiêu được định nghĩa bởi một người dùng và một kiểu Mục tiêu."
|
||||
" Mục tiêu có thể được tạo tự động bằng cách sử dụng các "
|
||||
"thử thách."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr ""
|
||||
"Tất cả huy hiệu nhân viên, được liên kết với nhân viên trực tiếp hoặc thông "
|
||||
"qua tài khoản người dùng"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"Gán một danh mục các Mục tiêu đến những người dùng được chọn để đánh giá họ.\n"
|
||||
" Thử thách có thể sử dụng một chu kỳ (hàng tuần, hàng tháng...) để tự động tạo các Mục tiêu.\n"
|
||||
" Các Mục tiêu được tạo cho các người dùng cụ thể hoặc thành viên của nhóm."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "Huy chương"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr ""
|
||||
"Huy chương là phần thưởng của công việc. Hãy trao chúng cho những người mà "
|
||||
"bạn cho rằng xứng đáng với nó."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "Huy hiệu được liên kết trực tiếp đến nhân viên"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Người dùng cơ bản"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "Thử thách"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "Tạo mới thử thách"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "Tạo mới mục tiêu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "Mô tả cái chúng làm và tại sao nó quan trọng (sẽ mang tính công cộng)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "Huy hiệu trực tiếp"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Nhân viên"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "Huy chương nhân viên"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "Mục tiêu Nhân viên"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "Huy hiệu Gamification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "Huy hiệu người dùng Gamification"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "Cửa sổ huy hiệu người dùng gamifitaion"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "Mục tiêu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "Lịch sử Mục tiêu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "Trao một Huy chương"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "Cấp cho nhân viên này huy hiệu đầu tiên của anh ấy"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "Được trao tặng"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "Số lượng nhân viên được cấp`"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "Có huy hiệu"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "Huy chương đã nhận"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "Người dùng liên quan đến tài nguyên để quản lý sự truy cập."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "Tặng thưởng nhân viên"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "Tặng thưởng Nhân viên bằng"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "Nhân viên được chọn không tương ứng với người dùng được chọn."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "Bạn cảm ơn vì điều gì?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "Bạn không thể gửi một huy hiệu đến chính bạn."
|
||||
|
||||
#. module: hr_gamification
|
||||
#. odoo-python
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr ""
|
||||
"Bạn chỉ có thể trao huy chương cho các nhân viên mà có gắn với tài khoản "
|
||||
"người dùng."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "để trao tặng cho nhân viên này vì một hành động tốt"
|
||||
|
|
@ -0,0 +1,238 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"目标是由用户和目标类型定义的。\n"
|
||||
"可以通过使用挑战自动创建目标。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "所有员工徽标,直接或通过用户与雇员联系"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr "给选定的用户分配一个目标列表以进行评估,自动创建的挑战可以是一段时期(每周,每月……)目标是根据指定的用户或者组成员创建的"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr "徽标是对良好的工作成员的奖励。授予您认为应得的那些人"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "与雇员相关联的徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "基本员工"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "挑战"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "创建一个挑战"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "创建一个新的目标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "描述他们做了什么,以及为什么它很重要(会被公开)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "直接徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "员工"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "员工徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "员工人力资源目标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "游戏化徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "游戏化员工徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "游戏化员工徽标向导"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "目标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "历史目标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "授予徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "授予该员工首枚徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "授予"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "授予的员工人数"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "拥有徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "管理资源访问权限的相关用户名."
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "奖励员工"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "奖励给职员"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "选中的职员和选中的用户不一致"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "您要感谢什么?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "不允许给自己颁发徽标"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "只能将徽标授予存在的职员用户"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "奖励该职员的突出表现"
|
||||
|
|
@ -0,0 +1,240 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_gamification
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-23 08:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:46+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid ""
|
||||
"A goal is defined by a user and a goal type.\n"
|
||||
" Goals can be created automatically by using challenges."
|
||||
msgstr ""
|
||||
"由用戶和目標類型共同確定的目標。\n"
|
||||
" 目標可通過使用挑戰自動建立。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid ""
|
||||
"All employee badges, linked to the employee either directly or through the "
|
||||
"user"
|
||||
msgstr "所有員工勳章,直接與員工連結或者通過使用者連結"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid ""
|
||||
"Assign a list of goals to chosen users to evaluate them.\n"
|
||||
" The challenge can use a period (weekly, monthly...) for automatic creation of goals.\n"
|
||||
" The goals are created for the specified users or member of the group."
|
||||
msgstr ""
|
||||
"給選定的使用者分配一個目標列表以進行評核。\n"
|
||||
"自動建立目標的挑戰可以是一段時期(每週,每月……)。\n"
|
||||
"目標是為指定的使用者或者群組的成員建立的。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__badge_ids
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_badge_menu_hr
|
||||
msgid "Badges"
|
||||
msgstr "徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid ""
|
||||
"Badges are rewards of good work. Give them to people you believe deserve it."
|
||||
msgstr "徽章是對良好工作的獎勵。授予您認為應得的那些人。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,help:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Badges directly linked to the employee"
|
||||
msgstr "直接與員工連結的勳章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "一般員工"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_challenge_menu_hr
|
||||
#: model:ir.ui.menu,name:hr_gamification.menu_hr_gamification
|
||||
msgid "Challenges"
|
||||
msgstr "挑戰"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.challenge_list_action2
|
||||
msgid "Create a new challenge"
|
||||
msgstr "建立一個挑戰"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.actions.act_window,help:hr_gamification.goals_menu_groupby_action2
|
||||
msgid "Create a new goal"
|
||||
msgstr "建立一個新目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Describe what they did and why it matters (will be public)"
|
||||
msgstr "描述他們做了什麼,以及為什麼它很重要(將公開)"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__direct_badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__direct_badge_ids
|
||||
msgid "Direct Badge"
|
||||
msgstr "直接徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user__employee_id
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "員工"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__badge_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__badge_ids
|
||||
msgid "Employee Badges"
|
||||
msgstr "員工徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__goal_ids
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__goal_ids
|
||||
msgid "Employee HR Goals"
|
||||
msgstr "員工人力資源目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge
|
||||
msgid "Gamification Badge"
|
||||
msgstr "遊戲化徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user
|
||||
msgid "Gamification User Badge"
|
||||
msgstr "遊戲化使用者徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_gamification_badge_user_wizard
|
||||
msgid "Gamification User Badge Wizard"
|
||||
msgstr "遊戲化使用者徽章嚮導"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_res_users__goal_ids
|
||||
msgid "Goal"
|
||||
msgstr "目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.goals_menu_groupby_action2
|
||||
#: model:ir.ui.menu,name:hr_gamification.gamification_goal_menu_hr
|
||||
msgid "Goals History"
|
||||
msgstr "歷史目標"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant a Badge"
|
||||
msgstr "授予徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Grant this employee his first badge"
|
||||
msgstr "授予該員工首枚徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_badge_form_view
|
||||
msgid "Granted"
|
||||
msgstr "授予"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge__granted_employees_count
|
||||
msgid "Granted Employees Count"
|
||||
msgstr "授予的員工人數"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_base__has_badges
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_hr_employee_public__has_badges
|
||||
msgid "Has Badges"
|
||||
msgstr "擁有徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "Received Badges"
|
||||
msgstr "回收徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model.fields,help:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "Related user name for the resource to manage its access."
|
||||
msgstr "用於管理其存取權限的資源的相關用戶名"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.actions.act_window,name:hr_gamification.action_reward_wizard
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee"
|
||||
msgstr "需要獎勵的職員"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "Reward Employee with"
|
||||
msgstr "獎勵職員"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/models/gamification.py:0
|
||||
#, python-format
|
||||
msgid "The selected employee does not correspond to the selected user."
|
||||
msgstr "選中的職員和選中的使用者不一致。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model:ir.model,name:hr_gamification.model_res_users
|
||||
#: model:ir.model.fields,field_description:hr_gamification.field_gamification_badge_user_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward
|
||||
msgid "What are you thankful for?"
|
||||
msgstr "您要感謝什麼?"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can not send a badge to yourself."
|
||||
msgstr "您不能給自己發送徽章"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: code:addons/hr_gamification/wizard/gamification_badge_user_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can send badges only to employees linked to a user."
|
||||
msgstr "您只能將徽章授予連接至使用者的職員。"
|
||||
|
||||
#. module: hr_gamification
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_employee_public_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_gamification.hr_hr_employee_view_form
|
||||
msgid "to reward this employee for a good action"
|
||||
msgstr "獎勵該職員的突出表現"
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import gamification
|
||||
from . import hr_employee
|
||||
from . import res_users
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class GamificationBadgeUser(models.Model):
|
||||
"""User having received a badge"""
|
||||
_inherit = 'gamification.badge.user'
|
||||
|
||||
employee_id = fields.Many2one('hr.employee', string='Employee', index=True)
|
||||
|
||||
@api.constrains('employee_id')
|
||||
def _check_employee_related_user(self):
|
||||
for badge_user in self:
|
||||
if badge_user.employee_id not in badge_user.user_id.\
|
||||
with_context(allowed_company_ids=self.env.user.company_ids.ids).employee_ids:
|
||||
raise ValidationError(_('The selected employee does not correspond to the selected user.'))
|
||||
|
||||
def action_open_badge(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'res_model': 'gamification.badge',
|
||||
'view_mode': 'form',
|
||||
'res_id': self.badge_id.id,
|
||||
}
|
||||
|
||||
class GamificationBadge(models.Model):
|
||||
_inherit = 'gamification.badge'
|
||||
|
||||
granted_employees_count = fields.Integer(compute="_compute_granted_employees_count")
|
||||
|
||||
@api.depends('owner_ids.employee_id')
|
||||
def _compute_granted_employees_count(self):
|
||||
for badge in self:
|
||||
badge.granted_employees_count = self.env['gamification.badge.user'].search_count([
|
||||
('badge_id', '=', badge.id),
|
||||
('employee_id', '!=', False)
|
||||
])
|
||||
|
||||
def get_granted_employees(self):
|
||||
employee_ids = self.mapped('owner_ids.employee_id').ids
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': 'Granted Employees',
|
||||
'view_mode': 'kanban,tree,form',
|
||||
'res_model': 'hr.employee.public',
|
||||
'domain': [('id', 'in', employee_ids)]
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class HrEmployeeBase(models.AbstractModel):
|
||||
_inherit = "hr.employee.base"
|
||||
|
||||
goal_ids = fields.One2many('gamification.goal', string='Employee HR Goals', compute='_compute_employee_goals')
|
||||
badge_ids = fields.One2many(
|
||||
'gamification.badge.user', string='Employee Badges', compute='_compute_employee_badges',
|
||||
help="All employee badges, linked to the employee either directly or through the user"
|
||||
)
|
||||
has_badges = fields.Boolean(compute='_compute_employee_badges')
|
||||
# necessary for correct dependencies of badge_ids and has_badges
|
||||
direct_badge_ids = fields.One2many(
|
||||
'gamification.badge.user', 'employee_id',
|
||||
help="Badges directly linked to the employee")
|
||||
|
||||
@api.depends('user_id.goal_ids.challenge_id.challenge_category')
|
||||
def _compute_employee_goals(self):
|
||||
for employee in self:
|
||||
employee.goal_ids = self.env['gamification.goal'].search([
|
||||
('user_id', '=', employee.user_id.id),
|
||||
('challenge_id.challenge_category', '=', 'hr'),
|
||||
])
|
||||
|
||||
@api.depends('direct_badge_ids', 'user_id.badge_ids.employee_id')
|
||||
def _compute_employee_badges(self):
|
||||
for employee in self:
|
||||
badge_ids = self.env['gamification.badge.user'].search([
|
||||
'|', ('employee_id', '=', employee.id),
|
||||
'&', ('employee_id', '=', False),
|
||||
('user_id', '=', employee.user_id.id)
|
||||
])
|
||||
employee.has_badges = bool(badge_ids)
|
||||
employee.badge_ids = badge_ids
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
goal_ids = fields.One2many('gamification.goal', 'user_id')
|
||||
badge_ids = fields.One2many('gamification.badge.user', 'user_id')
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="gamification.goal_gamification_manager_visibility" model="ir.rule">
|
||||
<field name="groups" eval="[(4, ref('hr.group_hr_user'))]"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
challenge_officer,"Challenge Officer",gamification.model_gamification_challenge,hr.group_hr_user,1,1,1,1
|
||||
challenge_line_officer,"Challenge Line Officer",gamification.model_gamification_challenge_line,hr.group_hr_user,1,1,1,1
|
||||
badge_officer,"Badge Officer",gamification.model_gamification_badge,hr.group_hr_user,1,1,1,1
|
||||
badge_user_officer,"Badge-user Officer",gamification.model_gamification_badge_user,hr.group_hr_user,1,1,1,1
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue