mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-18 03:32:03 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
45
odoo-bringout-oca-ocb-iap_mail/README.md
Normal file
45
odoo-bringout-oca-ocb-iap_mail/README.md
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# IAP / Mail
|
||||
|
||||
Bridge between IAP and mail
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-iap_mail
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- iap
|
||||
- mail
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: IAP / Mail
|
||||
- **Version**: 1.0
|
||||
- **Category**: Hidden/Tools
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `iap_mail`.
|
||||
|
||||
## 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-iap_mail/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-iap_mail/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 Iap_mail Module - iap_mail
|
||||
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.
|
||||
3
odoo-bringout-oca-ocb-iap_mail/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-iap_mail/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for iap_mail. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-iap_mail/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-iap_mail/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
6
odoo-bringout-oca-ocb-iap_mail/doc/DEPENDENCIES.md
Normal file
6
odoo-bringout-oca-ocb-iap_mail/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [iap](../../odoo-bringout-oca-ocb-iap)
|
||||
- [mail](../../odoo-bringout-oca-ocb-mail)
|
||||
4
odoo-bringout-oca-ocb-iap_mail/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-iap_mail/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 iap_mail or install in UI.
|
||||
7
odoo-bringout-oca-ocb-iap_mail/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-iap_mail/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-iap_mail"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-iap_mail"
|
||||
```
|
||||
12
odoo-bringout-oca-ocb-iap_mail/doc/MODELS.md
Normal file
12
odoo-bringout-oca-ocb-iap_mail/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in iap_mail.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class iap_account
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-iap_mail/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-iap_mail/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: iap_mail. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon iap_mail
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-iap_mail/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-iap_mail/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-iap_mail/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-iap_mail/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
5
odoo-bringout-oca-ocb-iap_mail/doc/TROUBLESHOOTING.md
Normal file
5
odoo-bringout-oca-ocb-iap_mail/doc/TROUBLESHOOTING.md
Normal file
|
|
@ -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-iap_mail/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-iap_mail/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 iap_mail
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-iap_mail/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-iap_mail/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
3
odoo-bringout-oca-ocb-iap_mail/iap_mail/__init__.py
Normal file
3
odoo-bringout-oca-ocb-iap_mail/iap_mail/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
26
odoo-bringout-oca-ocb-iap_mail/iap_mail/__manifest__.py
Normal file
26
odoo-bringout-oca-ocb-iap_mail/iap_mail/__manifest__.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': "IAP / Mail",
|
||||
'summary': """Bridge between IAP and mail""",
|
||||
'description': """Bridge between IAP and mail""",
|
||||
'category': 'Hidden/Tools',
|
||||
'version': '1.0',
|
||||
'depends': [
|
||||
'iap',
|
||||
'mail',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'data': [
|
||||
'data/mail_templates.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'iap_mail/static/src/js/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/data/mail_templates.xml
Normal file
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/data/mail_templates.xml
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="enrich_company">
|
||||
<p t-esc="flavor_text" />
|
||||
<div class="o_partner_autocomplete_enrich_info p-3 mt-3 mb-3 me-5">
|
||||
<div class="row p-0 m-0">
|
||||
<div class="col-sm-10 p-0">
|
||||
<h4>
|
||||
<span class="me-3 align-middle" t-esc="name"/>
|
||||
<a t-if="twitter" class="ms-2" target="_blank" t-attf-href="http://www.twitter.com/{{twitter}}">
|
||||
<img src="/web_editor/font_to_img/61569/rgb(0,132,180)/22"/>
|
||||
</a>
|
||||
<a t-if="facebook" class="ms-2" target="_blank" t-attf-href="http://www.facebook.com/{{facebook}}">
|
||||
<img src="/web_editor/font_to_img/61570/rgb(59,89,152)/22"/>
|
||||
</a>
|
||||
<a t-if="linkedin" class="ms-2" target="_blank" t-attf-href="https://www.linkedin.com/{{linkedin}}">
|
||||
<img src="/web_editor/font_to_img/61580/rgb(0,119,181)/22"/>
|
||||
</a>
|
||||
<a t-if="crunchbase" class="ms-2" target="_blank" t-attf-href="https://www.crunchbase.com/{{crunchbase}}">
|
||||
<img width="19px" height="19px" src="/partner_autocomplete/static/img/crunchbase.ico"/>
|
||||
</a>
|
||||
</h4>
|
||||
<p t-esc="description"/>
|
||||
</div>
|
||||
<div class="col-sm-2 p-0 text-center text-md-end order-first order-md-last">
|
||||
<img t-attf-src="{{logo}}" alt="Company Logo" style="max-width: 80px;"/>
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
|
||||
<div class="col-sm-12 row m-0 p-0">
|
||||
<div t-if="company_type" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-building text-primary"/>
|
||||
<b>Company type</b>
|
||||
</div>
|
||||
<div t-if="company_type" class="my-1 col-sm-9" t-esc="company_type" />
|
||||
<div t-if="founded_year" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-calendar text-primary"/>
|
||||
<b>Founded</b>
|
||||
</div>
|
||||
<div t-if="founded_year" class="my-1 col-sm-9" t-esc="founded_year" />
|
||||
<t t-set="sectors" t-value="[]" />
|
||||
<t t-if="sector_primary" t-set="sectors" t-value="sectors + [sector_primary]" />
|
||||
<t t-if="industry" t-set="sectors" t-value="sectors + [industry]" />
|
||||
<t t-if="industry_group" t-set="sectors" t-value="sectors + [industry_group]" />
|
||||
<t t-if="sub_industry" t-set="sectors" t-value="sectors + [sub_industry]" />
|
||||
<div t-if="sectors" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-industry text-primary"/>
|
||||
<b>Sectors</b>
|
||||
</div>
|
||||
<div t-if="sectors" class="my-1 col-sm-9">
|
||||
<t t-foreach="sectors" t-as="inner_sector">
|
||||
<label t-esc="inner_sector" class="o_tag o_tag_color_7" style="font-weight:normal; padding: 2px 10px; margin: 1px 0px; border-radius: 13px; display: inline-block;"/>
|
||||
</t>
|
||||
</div>
|
||||
<div t-if="employees" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-users text-primary"/>
|
||||
<b>Employees</b>
|
||||
</div>
|
||||
<div t-if="employees" class="my-1 col-sm-9" t-esc="'%.0f' % employees" />
|
||||
<div t-if="estimated_annual_revenue" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-money text-primary"/>
|
||||
<b>Estimated revenue</b>
|
||||
</div>
|
||||
<div t-if="estimated_annual_revenue" class="my-1 col-sm-9">
|
||||
<span t-esc="estimated_annual_revenue" /><span> per year</span>
|
||||
</div>
|
||||
<div t-if="phone_numbers" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-phone text-primary"/>
|
||||
<b>Phone</b>
|
||||
</div>
|
||||
<div t-if="phone_numbers" class="col-sm-9">
|
||||
<t t-foreach="phone_numbers" t-as="phone_number">
|
||||
<a t-attf-href="tel:{{phone_number}}" t-esc="phone_number" class="o_tag o_tag_color_7" style="font-weight:normal; padding: 2px 10px; margin: 1px 0px; border-radius: 13px; display: inline-block;"/>
|
||||
</t>
|
||||
</div>
|
||||
<div t-if="email" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-envelope text-primary"/>
|
||||
<b>Email</b>
|
||||
</div>
|
||||
<div t-if="email" class="col-sm-9">
|
||||
<t t-foreach="email" t-as="email_item">
|
||||
<a target="_top" t-attf-href="mailto:{{email_item}}" t-esc="email_item" class="o_tag o_tag_color_7" style="font-weight:normal; padding: 2px 10px; margin: 1px 0px; border-radius: 13px; display: inline-block;"/>
|
||||
</t>
|
||||
</div>
|
||||
<div t-if="timezone" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-globe text-primary"/>
|
||||
<b>Timezone</b>
|
||||
</div>
|
||||
<div t-if="timezone" class="my-1 col-sm-9" t-esc="timezone.replace('_', ' ')" />
|
||||
<div t-if="tech" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-cube text-primary"/>
|
||||
<b>Technologies Used</b>
|
||||
</div>
|
||||
<div t-if="tech" class="my-1 col-sm-9">
|
||||
<t t-foreach="tech" t-as="tech_item">
|
||||
<label t-esc="tech_item.replace('_', ' ').title()" class="o_tag o_tag_color_7" style="font-weight:normal; padding: 2px 10px; margin: 1px 0px; border-radius: 13px; display: inline-block;"/>
|
||||
</t>
|
||||
</div>
|
||||
<div t-if="twitter_bio" class="my-1 p-0 col-sm-3">
|
||||
<i class="fa fa-fw me-2 fa-twitter text-primary"/>
|
||||
<b>Twitter</b>
|
||||
</div>
|
||||
<div t-if="twitter_bio" class="my-1 col-sm-9">
|
||||
<div t-if="twitter_followers"><t t-esc="twitter_followers"/> followers</div>
|
||||
<div t-esc="twitter_bio" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</odoo>
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/af.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/af.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/am.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/am.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ar.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ar.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Niyas Raphy, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>نوع الشركة</b> "
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>تأسست</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>التقنيات المستخدمة</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>البريد الإلكتروني</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>المنطقة زمنية</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>القطاعات</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>الإيرادات المقدرة</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>هاتف</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>تويتر</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>الموظفين</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> لكل سنة</span> "
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "شعار الشركة "
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "حساب IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "المتابعين "
|
||||
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/az.po
Normal file
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/az.po
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Şirkətin Loqosu"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Hesabı"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "İzləyicilər"
|
||||
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/be.po
Normal file
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/be.po
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Лагатып кампаніі"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/bg.po
Normal file
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/bg.po
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Anton Vassilev, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Anton Vassilev, 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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Фирмен знак"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Акаунт"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "последователи"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/bs.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/bs.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-20 09:02+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> godišnje</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo tvtke"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Račun"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "Sljedbenici"
|
||||
134
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ca.po
Normal file
134
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ca.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Tipus de companyia</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>S'ha trobat</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tecnologies usades</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Correu electrònic</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Zona horària</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Ingressos estimats</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telèfon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Empleats</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per any</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logotip de companyia"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Compte IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "seguidors"
|
||||
119
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/cs.po
Normal file
119
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/cs.po
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jakub Smolka, 2024
|
||||
# Tereza Mokrá, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tereza Mokrá, 2024\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektory</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> za rok</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo společnosti"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Účet"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "sledující"
|
||||
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/da.po
Normal file
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/da.po
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per år</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Virksomhedslogo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Konto"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "følgere"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/de.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/de.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Unternehmenstyp</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Gegründet</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Verwendete Technologien</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-Mail</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Zeitzone</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektoren</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Geschätzter Umsatz</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Mitarbeiter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> pro Jahr</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Unternehmenslogo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP-Konto"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "Follower"
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/es.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/es.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ana Sanjuán, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Tipo de empresa</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Fundada</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tecnología utilizada</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Correo electrónico</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Zona horaria</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectores</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Ingresos estimados</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Teléfono</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Empleados</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> por año</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logotipo de la compañia"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Cuenta IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "seguidores"
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/es_MX.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Tipo de empresa</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Fundada</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tecnología utilizada</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Correo electrónico</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Zona horaria</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectores</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Ingresos estimados</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Teléfono</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Empleados</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> por año</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo de la empresa"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Cuenta de compras dentro de la aplicación"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "seguidores"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/et.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/et.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Ettevõtte tüüp</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Asutatud</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tehnoloogiad, mida kasutati</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-post</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Ajavöönd</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektorid</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Hinnanguline tulu</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Töötajad</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span>aastas</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Ettevõtte logo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP konto"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "jälgijad"
|
||||
147
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/fa.po
Normal file
147
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/fa.po
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>نوع شرکت</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>تأسیس شده</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
" <i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>تکنولوژیهای استفادهشده</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>ایمیل</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>منطقه زمانی</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>صنایع</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>درآمد تخمینی</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>تلفن</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"```html\n"
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>توییتر</b>\n"
|
||||
"```"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>کارمندان</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> در سال</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "لوگو شرکت"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "حساب IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "دنبال کنندگان"
|
||||
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/fi.po
Normal file
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/fi.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Simo Suurla <simo@suurla.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Yrityksen tyyppi</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Perustettu</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Käytetyt teknologiat</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Sähköposti</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Aikavyöhyke</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Alat</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Arvioidut tulot</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Puhelin</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Työntekijät</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> vuodessa</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Yrityksen logo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Tili"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "seuraajat"
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/fr.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/fr.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Manon Rondou, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Manon Rondou, 2024\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Type de société</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Fondée</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies utilisées</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-mail</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Fuseau horaire</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Secteurs</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Revenus estimés</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Téléphone</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employés</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> par an</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo de la société"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Compte IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "abonnés"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/gu.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/gu.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
113
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/he.po
Normal file
113
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/he.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2022
|
||||
# Yves Goldberg <admin@ygol.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# yael terner, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: yael terner, 2024\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> לשנה</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "לוגו חברה "
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "חשבון IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "עוקבים"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hi.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hi.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hr.po
Normal file
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hr.po
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo tvtke"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "Sljedbenici"
|
||||
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hu.po
Normal file
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hu.po
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# krnkris, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> évente</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Vállalati logó"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP fiók"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "követő"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hy.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/hy.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/iap_mail.pot
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/iap_mail.pot
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-20 09:02+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/id.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/id.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Tipe perusahaan</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Didirikan</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Teknologi yang Digunakan</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Zona waktu</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektor-Sektor</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Perkiraan pendapatan</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telepon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Karyawan-Karyawan</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per tahun</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo Perusahaan"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Akun IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "follower"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/is.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/is.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/it.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/it.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>TIpo azienda</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Fondazione</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tecnologie utilizzate</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-mail</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Fuso orario</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Settori</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Ricavo stimato</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefono</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Dipendenti</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per anno</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo azienda"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Conto IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "stanno seguendo"
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ja.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ja.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Noma Yuki, 2022
|
||||
# Junko Augias, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>会社タイプ</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>創立</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>使用技術</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Eメール</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>タイムゾーン</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>業種</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>推定売上高</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>電話</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>従業員</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> 年次</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "会社ロゴ"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "アプリ内課金アカウント"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "フォロワー"
|
||||
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/km.po
Normal file
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/km.po
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "រូបសញ្ញាក្រុមហ៊ុន"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "គណនីអាយអាយអេស។"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ko.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ko.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>회사 유형</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>설립</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>사용 기술</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>이메일</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>시간대</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>분야</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>예상 수익</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>전화</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>트위터</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>직원</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> 연간</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "회사 로고"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP 계정"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "팔로워"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/lo.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/lo.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/lt.po
Normal file
112
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/lt.po
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Įmonės logotipas"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP paskyra"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "prenumeratoriai"
|
||||
116
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/lv.po
Normal file
116
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/lv.po
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# JanisJanis <jbojars@gmail.com>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektori</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Sagaidāmie ieņēmumi</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Company Logo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "sekotāji"
|
||||
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ml.po
Normal file
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ml.po
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "കമ്പനി ലോഗോ"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "ഫോള്ളോവെർസ്"
|
||||
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/mn.po
Normal file
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/mn.po
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Компанийн лого"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP данс"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "дагагчид"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ms.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ms.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
113
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/nb.po
Normal file
113
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/nb.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Henning Fyllingsnes, 2023\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Grunnlagt</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Firmalogo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP-konto"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "følgere"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/nl.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/nl.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Bedrijfstype</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Opgericht</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Gebruikte technologieën</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-mail</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Tijdzone</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectoren</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Geschatte omzet</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefoon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Werknemers</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per jaar</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Bedrijfslogo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP account"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "volgers"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/no.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/no.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/pl.po
Normal file
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/pl.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Maja Stawicka <mjstwck@wp.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
"<b>Typ firmy</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
"<b>Założona</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
"<b>Użyte technologie</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
"<b>Email</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
"<b>Strefa czasowa</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
"<b>Sektory</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
"<b>Szacowane dochód</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
"<b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
"<b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
"<b>Pracownicy</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span>rocznie</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo firmy"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Konto IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "obserwatorzy"
|
||||
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/pt.po
Normal file
111
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/pt.po
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo da Empresa"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "Seguidores"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/pt_BR.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Layna Nascimento, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Tipo de empresa</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Fundada em</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tecnologias utilizadas</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-mail</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Fuso horário</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Setores</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Receita estimada</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefone</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Funcionários</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> por ano</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo da empresa"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Conta IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "seguidores"
|
||||
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ro.po
Normal file
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ro.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Alin Miclea, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Alin Miclea, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"Tipul <i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>companiei</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Înființată</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Tehnologii utilizate</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-mail</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Fus orar</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectoare</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Venituri estimate</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Angajați</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span>pe an</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Siglă comanie"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Cont IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "persoane interesate"
|
||||
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ru.po
Normal file
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ru.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Тип компании</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Основано</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Используемые технологии</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Электронная почта</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Часовой пояс</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Сектора</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Предполагаемый доход</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Телефон</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Сотрудники</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> в год</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Логотип компании"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Аккаунт IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "подписчики"
|
||||
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sk.po
Normal file
110
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sk.po
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo spoločnosti"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "Odberatelia"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sl.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sl.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Vrsta podjetja</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Ustanovljeno</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Uporabljene tehnologije</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-pošta</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Časovni pas</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektorji</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Ocenjeni prihodek</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Zaposleni</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> na leto</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logotip družbe"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Račun"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "sledilci"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sq.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sq.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sr.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sr.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Tip kompanije</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Osnovano</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>korišćenje tehnologije</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b> Vremenske zone</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectori</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Procenjeni prihod</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Zaposleni</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> godišnje</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo preduzeća"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Nalog"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "pratioci"
|
||||
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sv.po
Normal file
133
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sv.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Typ av företag</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Grundat </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Använda teknologier </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-post </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Tidszon </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektor </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Beräknade intäkter </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b> X (f.d. Twitter) </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Anställda </b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per år </span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Företagslogo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP-konto"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "Följare formulär"
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sw.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/sw.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ta.po
Normal file
106
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/ta.po
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/th.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/th.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>ประเภทบริษัท</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>ก่อตั้ง</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>เทคโนโลยีที่ใช้</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>อีเมล</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>เขตเวลา</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>ส่วน</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>รายได้โดยประมาณ</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>โทรศัพท์</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>พนักงาน</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span>ต่อปี</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "โลโก้บริษัท"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "บัญชี IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "ผู้ติดตาม"
|
||||
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/tr.po
Normal file
132
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/tr.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Halil, 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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Şirket türü</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Bulundu</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Teknolojiler Kullanıldı</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>E-posta</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Zaman Dilimi</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sektörler</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Tahmini gelir</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Telefon</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Çalışanlar</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> yıl başına</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Şirket Logosu"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP Hesabı"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "takipçiler"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/uk.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/uk.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Тип компанії</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Знайдено</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Технології, що використовуються</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Часовий пояс</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Сектори</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Очікуваний дохід</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Телефон</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Співробітники</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> на рік</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Логотип компанії"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Рахунок IAP "
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "підписники"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/vi.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/vi.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Loại hình công ty</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Được thành lập</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Công nghệ được sử dụng</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Múi giờ</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Lĩnh vực</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Doanh thu ước tính</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Điện thoại</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Nhân viên</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> per year</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "Logo Công ty"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "Tài khoản IAP"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "theo dõi"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/zh_CN.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>公司类型</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>已成立</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>使用的技术</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>电子邮件</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>时区</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>部门</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>预计收入</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>电话</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>员工</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> 每年</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "公司 Logo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP 账户"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "关注者"
|
||||
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/zh_TW.po
Normal file
131
odoo-bringout-oca-ocb-iap_mail/iap_mail/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\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: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>Company type</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-building text-primary\"/>\n"
|
||||
" <b>公司類型</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>Founded</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-calendar text-primary\"/>\n"
|
||||
" <b>成立</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>Technologies Used</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-cube text-primary\"/>\n"
|
||||
" <b>使用的技術</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>Email</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-envelope text-primary\"/>\n"
|
||||
" <b>電郵</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>Timezone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-globe text-primary\"/>\n"
|
||||
" <b>時區</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>Sectors</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-industry text-primary\"/>\n"
|
||||
" <b>行業範疇</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>Estimated revenue</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-money text-primary\"/>\n"
|
||||
" <b>估計收入</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>Phone</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-phone text-primary\"/>\n"
|
||||
" <b>電話</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-twitter text-primary\"/>\n"
|
||||
" <b>Twitter</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>Employees</b>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw me-2 fa-users text-primary\"/>\n"
|
||||
" <b>員工</b>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "<span> per year</span>"
|
||||
msgstr "<span> 每年</span>"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "Company Logo"
|
||||
msgstr "公司 Logo"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model:ir.model,name:iap_mail.model_iap_account
|
||||
msgid "IAP Account"
|
||||
msgstr "IAP 帳戶"
|
||||
|
||||
#. module: iap_mail
|
||||
#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company
|
||||
msgid "followers"
|
||||
msgstr "訂閱者"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import iap_account
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class IapAccount(models.Model):
|
||||
_inherit = 'iap.account'
|
||||
|
||||
@api.model
|
||||
def _send_iap_bus_notification(self, service_name, title, error_type=False):
|
||||
param = {
|
||||
'title': title,
|
||||
'error_type': 'danger' if error_type else 'success'
|
||||
}
|
||||
if error_type == 'credit':
|
||||
param['url'] = self.env['iap.account'].get_credits_url(service_name)
|
||||
self.env['bus.bus']._sendone(self.env.user.partner_id, 'iap_notification', param)
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import { Markup } from 'web.utils';
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
export const iapNotificationService = {
|
||||
dependencies: ["bus_service", "notification"],
|
||||
|
||||
start(env, { bus_service, notification }) {
|
||||
bus_service.addEventListener('notification', ({ detail: notifications }) => {
|
||||
for (const { payload, type } of notifications) {
|
||||
if (type === 'iap_notification') {
|
||||
if (payload.error_type == 'success') {
|
||||
displaySuccessIapNotification(payload);
|
||||
} else if (payload.error_type == 'danger') {
|
||||
displayFailureIapNotification(payload);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
bus_service.start();
|
||||
|
||||
/**
|
||||
* Displays the IAP success notification on user's screen
|
||||
*/
|
||||
function displaySuccessIapNotification(notif) {
|
||||
notification.add(notif.title, {
|
||||
type: notif.error_type,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the IAP failure notification on user's screen
|
||||
*/
|
||||
function displayFailureIapNotification(notif) {
|
||||
const message = Markup`<a class='btn btn-link' href='${notif.url}' target='_blank' ><i class='fa fa-arrow-right'></i> ${env._t("Buy more credits")}</a>`;
|
||||
notification.add(message, {
|
||||
type: notif.error_type,
|
||||
title: notif.title
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
registry.category("services").add("iapNotification", iapNotificationService);
|
||||
43
odoo-bringout-oca-ocb-iap_mail/pyproject.toml
Normal file
43
odoo-bringout-oca-ocb-iap_mail/pyproject.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-iap_mail"
|
||||
version = "16.0.0"
|
||||
description = "IAP / Mail - Bridge between IAP and mail"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-iap>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-mail>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["iap_mail"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue