Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,52 @@
# Product Email Template
Add email templates to products to be sent on invoice confirmation
==================================================================
With this module, link your products to a template to send complete information and tools to your customer.
For instance when invoicing a training, the training agenda and materials will automatically be sent to your customers.'
## Installation
```bash
pip install odoo-bringout-oca-ocb-product_email_template
```
## Dependencies
This addon depends on:
- account
## Manifest Information
- **Name**: Product Email Template
- **Version**: N/A
- **Category**: Accounting/Accounting
- **License**: LGPL-3
- **Installable**: False
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `product_email_template`.
## 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
- Reports: doc/REPORTS.md
- Security: doc/SECURITY.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

View 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 Product_email_template Module - product_email_template
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.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for product_email_template. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,3 @@
# Controllers
This module does not define custom HTTP controllers.

View file

@ -0,0 +1,5 @@
# Dependencies
This addon depends on:
- [account](../../odoo-bringout-oca-ocb-account)

View 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 product_email_template or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-ocb-product_email_template"
# or
uv pip install odoo-bringout-oca-ocb-product_email_template"
```

View file

@ -0,0 +1,13 @@
# Models
Detected core models and extensions in product_email_template.
```mermaid
classDiagram
class account_move
class product_template
```
Notes
- Classes show model technical names; fields omitted for brevity.
- Items listed under _inherit are extensions of existing models.

View file

@ -0,0 +1,6 @@
# Overview
Packaged Odoo addon: product_email_template. Provides features documented in upstream Odoo 16 under this addon.
- Source: OCA/OCB 16.0, addon product_email_template
- License: LGPL-3

View file

@ -0,0 +1,3 @@
# Reports
This module does not define custom reports.

View 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

View 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.

View 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 product_email_template
```

View file

@ -0,0 +1,3 @@
# Wizards
This module does not include UI wizards.

View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import models

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
{
'name': 'Product Email Template',
'depends': ['account'],
'category': 'Accounting/Accounting',
'description': """
Add email templates to products to be sent on invoice confirmation
==================================================================
With this module, link your products to a template to send complete information and tools to your customer.
For instance when invoicing a training, the training agenda and materials will automatically be sent to your customers.'
""",
'data': [
'views/product_views.xml',
'views/mail_template_views.xml',
],
'license': 'LGPL-3',
}

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,69 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# 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:54+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "إرسال رسالة بريد إلكتروني تلقائية عند الفوترة "
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "المتن"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "قالب البريد الإلكتروني"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "قيد اليومية"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "المنتج"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "قالب البريد الإلكتروني للمنتج"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "قم بإرسال بريد إلكتروني خاص بالمنتج بمجرد أن يتم تصديق المنتج "
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"عندما تقوم بتصديق فاتورة، سيتم إرسال رسالة بريد الكتروني للعميل بناءً على "
"هذا القالب. سيستلم العميل بريد الكتروني لكل منتج مرتبط بقالب البريد "
"الالكتروني. "

View file

@ -0,0 +1,68 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Jumshud Sultanov <cumshud@gmail.com>, 2022
# erpgo translator <jumshud@erpgo.az>, 2022
# Nurlan Farajov <coolinuxoid@gmail.com>, 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:54+0000\n"
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Korpus"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Email Şablonu"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Jurnal Girişi"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Məhsul"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Məhsul Email Şablonu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Faktura təsdiq edildikdən sonra məhsula xüsusi e-poçt göndərin"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+0000\n"
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,72 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Nikola Iliev, 2023
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
# Martin Trigaux, 2023
# Maria Boyadjieva <marabo2000@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:54+0000\n"
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Текст на имейла"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Шаблон за имейл"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Записи в Дневника"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Продукт"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Имейл шаблон за продукт"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"При потвърждаване на фактура ще бъде изпратен имейл на клиента въз основа на"
" този шаблон. Клиентът ще получи имейл за всеки продукт, свързан с шаблона "
"на имейла."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatski mail na računu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Tijelo poruke"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Predložak email-a"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Temeljnica"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Email predložak za artikal"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Pošalji mail specifičan za proizvod prilikom potvrđivanja računa"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,74 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# jabelchi, 2022
# Quim - eccit <quim@eccit.com>, 2022
# Arnau Ros, 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:54+0000\n"
"Last-Translator: Arnau Ros, 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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Correu electrònic automàtic en la factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Cos del missatge"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Plantilla de correu electrònic"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Assentament comptable"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Producte"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Plantilla de correu de productes"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Enviar un correu electrònic específic per producte un cop s'hagi validat la "
"factura"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"En validar una factura, s'enviarà un correu electrònic al client basat en "
"aquesta plantilla. El client rebrà un correu electrònic per cada producte "
"vinculat a una plantilla de correu electrònic."

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Michal Veselý <michal@veselyberanek.net>, 2022
# Martin Trigaux, 2022
# Jiří Podhorecký, 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:54+0000\n"
"Last-Translator: Jiří Podhorecký, 2022\n"
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatický e-mail na faktuře"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Tělo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Šablona e-mailu"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Položka deníku"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Šablona e-mailu produktu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Po ověření faktury odeslat e-mail pro konkrétní produkt"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Při ověření faktury bude zákazníkovi zaslán e-mail na základě této šablony. "
"Zákazník obdrží e-mail pro každý produkt propojený s šablonou e-mailu."

View file

@ -0,0 +1,69 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatisk e-mail ved fakturering"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Brødtekst"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-mail skabelon"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Postering"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "E-mailskabelon til produkt"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Send en produkt-specifik email når faktura er valideret"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Ved validering af en faktura, sendes en e-mail til kunden baseret på denne "
"skabelon. Kunden modtager en e-mail for hvert produkt, der er knyttet til en"
" e-mailskabelon."

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatische E-Mail bei Rechnung"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Nachrichtentext"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-Mail-Vorlage"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Journalbuchung"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "E-Mail-Vorlage für Produkte"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Senden Sie eine produktspezifische E-Mail, sobald die Rechnung validiert "
"wurde"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Bei Validierung einer Rechnung, wird anhand dieser Vorlage eine E-Mail an "
"den Kunden versandt. Der Kunde erhält eine E-Mail für jedes mit einer "
"E-Mail-Vorlage verknüpftes Produkt."

View file

@ -0,0 +1,66 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2018
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server saas~11.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-21 13:17+0000\n"
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Κυρίως θέμα"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Πρότυπο email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Τιμολόγιο"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Πρότυπο Email Είδους"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Πρότυπο Είδους "
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is paid"
msgstr ""
"Στείλτε ένα μήνυμα ηλεκτρονικού ταχυδρομείου για συγκεκριμένο είδος μόλις "
"πληρωθεί το τιμολόγιο"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid "Send a product-specific email once the invoice is paid."
msgstr ""

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/"
"odoo-9/language/en_GB/)\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Body"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr "Email Template"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Invoice"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Miscellaneous"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Product Template"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,72 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 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:54+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Correo electrónico automático al facturar"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Contenido"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Plantilla de correo electrónico"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Asiento contable"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Producto"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Plantilla de correo electrónico de producto"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Enviar un correo electrónico específico del producto una vez que se pague la"
" factura"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Al validar una factura, un correo electrónico será enviado al cliente basado"
" en esta plantilla. El cliente recibirá un correo electrónico para cada "
"producto vinculado a una plantilla de correo electrónico."

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/"
"language/es_BO/)\n"
"Language: es_BO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Varios"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/"
"language/es_CL/)\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Contenido"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Varios"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Plantilla producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/"
"language/es_CR/)\n"
"Language: es_CR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Contenido"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr "Plantilla email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Varios"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,72 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Fernanda Alvarez, 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:54+0000\n"
"Last-Translator: Fernanda Alvarez, 2025\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Correo electrónico automático al facturar"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Contenido"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Plantilla de correo electrónico"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Asiento contable"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Producto"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Plantilla de correo electrónico de producto"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Envíe un correo electrónico específico para el producto luego de validar la "
"factura"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Una vez que valide la factura, se le enviará un correo con esta plantilla al"
" cliente. El cliente recibirá un correo electrónico para cada producto "
"vinculado a una plantilla de correo."

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/"
"language/es_PA/)\n"
"Language: es_PA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr ""
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-9/"
"language/es_PY/)\n"
"Language: es_PY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Diversos"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/"
"language/es_VE/)\n"
"Language: es_VE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Cuerpo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr "Plantilla email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr ""
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Plantilla de producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,74 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Triine Aavik <triine@avalah.ee>, 2022
# Piia Paurson <piia@avalah.ee>, 2022
# Martin Aavastik <martin@avalah.ee>, 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automaatne meiliaadress müügiarvel"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Sisu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-kirja näidis"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Andmiku kanne"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Toode"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Toote e-maili mall"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Saada arve kinnitamisel tootepõhine e-kiri"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."

View file

@ -0,0 +1,855 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Basque (http://www.transifex.com/odoo/odoo-9/language/eu/)\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Gorputza"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Invoice"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr ""
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Product Template"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,69 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
# Martin Trigaux, 2023
# Hamed Mohammadi <hamed@dehongi.com>, 2023
# Hanna Kheradroosta, 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:54+0000\n"
"Last-Translator: Hanna Kheradroosta, 2023\n"
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fa\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "ایمیل خودکار در زمان فاکتور"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "بدنه"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "قالب ایمیل"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "داده روزنامه"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "محصول"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "قالب ایمیل محصول"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "پس از تایید فاکتور، یک ایمیل مخصوص محصول ارسال کنید"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,75 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Miku Laitinen <miku.laitinen@gmail.com>, 2022
# Martin Trigaux, 2022
# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2022
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2022
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 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:54+0000\n"
"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automaattinen sähköposti laskuttaessa"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Viesti"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Sähköpostin mallipohja"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Päiväkirjan kirjaus"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Tuote"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Tuotteen sähköpostimalli"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Lähetä tuotekohtainen sähköpostilasku heti, kun lasku on vahvistettu"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Laskun hyväksynnän yhteydessä asiakkaalle lähetetään sähköposti perustuen "
"tähän sähköpostimalliin. Asiakas saa sähköpostin jokaisesta "
"sähköpostimalliin liitetystä tuotteesta."

View file

@ -0,0 +1,855 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n"
"Language: fo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Faktura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr ""
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Jolien De Paepe, 2023
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "E-mail automatique à la facturation"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Corps"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Modèle d'e-mail"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Pièce comptable"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produit"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Modèle d'e-mail de produit"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Envoyer un e-mail spécifique quand la facture est payée"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Lors de la validation d'une facture, un e-mail sera envoyé au client sur "
"base de ce modèle. Le client recevra un e-mail pour chaque produit lié à un "
"modèle d'e-mail."

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-02-23 06:16+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/"
"language/fr_CA/)\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Facture"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr ""
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Modèle de produit"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,855 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Corpo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Factura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Diversos"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Modelo de Producto"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,66 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Qaidjohar Barbhaya, 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:54+0000\n"
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Journal Entry"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Product"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Yihya Hugirat <hugirat@gmail.com>, 2022
# ZVI BLONDER <ZVIBLONDER@gmail.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:54+0000\n"
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: he\n"
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "דוא\"ל אוטומטי בחשבונית"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "גוף"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "תבנית דוא\"ל"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "פקודת יומן"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "מוצר"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "תבנית דוא\"ל למוצר"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "שלח דוא\"ל מסוים למוצר לאחר אישור החשבונית"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"כאשר חשבונית מאושרת, יישלח ללקוח דוא\"ל המבוסס על תבנית זו. הלקוח יקבל "
"דוא\"ל עבור כל מוצר שיקושר לתבנית דוא\"ל."

View file

@ -0,0 +1,67 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Wil Odoo, 2024
# Ujjawal Pathak, 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:54+0000\n"
"Last-Translator: Ujjawal Pathak, 2025\n"
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "ईमेल टेंप्लेट"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "जर्नल एंट्री"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "उत्पाद"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Tina Milas, 2022
# Bole <bole@dajmi5.com>, 2022
# Karolina Tonković <karolina.tonkovic@storm.hr>, 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:54+0000\n"
"Last-Translator: Karolina Tonković <karolina.tonkovic@storm.hr>, 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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatski mail na računu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Tijelo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Predložak e-maila"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Temeljnica"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Predložak e-maila za proizvod"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Pošalji mail specifičan za proizvod prilikom potvrđivanja računa"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Kod provjere računa, e-mail će biti poslan kupcu na temelju tog predloška. "
"Kupac će primiti e-poštu za svaki proizvod povezan na predložak e-pošte."

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# krnkris, 2022
# gezza <geza.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:54+0000\n"
"Last-Translator: gezza <geza.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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatikus e-mail számlánál"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Törzs"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-mail sablon"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Könyvelési tétel"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Termék"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Termék e-mail sablon"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Küldjön termékspecifikus e-mail üzenetet a számla jóváhagyásakor"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Egy számla jóváhagyásakor egy e-mailt kerül kiküldésre a vevő részére ezen "
"sablon alapján. A vevő azokról a termékekről kap e-mail üzenetet, melyek egy"
" e-mail sablonhoz tartoznak."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Email Otomatis pada Faktur"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Badan"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Template Email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Entri Jurnal"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produk"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Templete Email Produk"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Kirim email spesifik ke produk setelah faktur divalidasi"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Saat memvalidasi faktur, email akan dikirim ke pelanggan berdasarkan templat"
" ini. Pelanggan akan menerika email untuk setiap produk yang di-link ke "
"templat email."

View file

@ -0,0 +1,67 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Heiðar Sigurðsson, 2022
# Kristófer Arnþórsson, 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:54+0000\n"
"Last-Translator: Kristófer Arnþórsson, 2024\n"
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Dagbókarfærsla"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Vara"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "E-mail automatica alla fattura"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Corpo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Modello e-mail"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Registrazione contabile"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Prodotto"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Modello e-mail del prodotto"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Invia una e-mail relativa al prodotto dopo la validazione della fattura"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Dopo la conferma di una fattura viene inviata una e-mail al cliente in base "
"a questo modello. Il cliente ne riceverà una per ciascun prodotto collegato "
"a un modello e-mail."

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Andy Yiu, 2022
# Ryoko Tsuda <ryoko@quartile.co>, 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:54+0000\n"
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2023\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "請求時に自動的にEメールする"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "表示文"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "メールテンプレート"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "仕訳"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "プロダクト"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "プロダクトメールテンプレート"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "請求書検証の際にプロダクトに関するEメールを送信"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"請求書の検証時に、このテンプレートに基づいて顧客に電子メールが送信されます。 "
"顧客は、電子メールテンプレートにリンクされた各製品の電子メールを受信します。"

View file

@ -0,0 +1,855 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "შიგთავსი"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "ინვოისი"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "სხვადასხვაგვარი"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,855 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Tafekka"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr "Taneɣruft n Imayl"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Tafaturt"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Ayen nniḍen"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr "Taneɣruft Imayln Ufaris"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Taneɣruft n ufaris"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,855 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Беті"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Инвойс"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Әр түрлі"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,69 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "សារអេឡិចត្រូនិចនៅក្នុងវិក្ក័យបត្រដោយស្វ័យប្រវត្តិ"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "រូបរាង"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "គំរូអ៊ីម៉ែល"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "ការចុះទិន្នានុប្បរត្ត"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "ផលិតផល"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "គំរូអ៊ីមែលផលិតផល។"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "ផ្ញើអ៊ីមែលជាក់លាក់ទៅផលិតផលនៅពេលវិក្កយបត្រមានសុពលភាព"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"នៅពេលដែលមានសុពលភាពវិក័យប័ត្រអ៊ីម៉ែលនឹងត្រូវបានផ្ញើទៅអតិថិជនដោយផ្អែកលើគំរូនេះ។"
" អតិថិជននឹងទទួលបានអ៊ីមែលសម្រាប់ផលិតផលនីមួយៗភ្ជាប់ទៅនឹងគំរូអ៊ីមែល។"

View file

@ -0,0 +1,68 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Sarah Park, 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:54+0000\n"
"Last-Translator: Sarah Park, 2022\n"
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "청구서 자동 이메일"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "본문"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "이메일 서식"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "분개"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "품목"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "품목 이메일 서식"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "청구서 금액이 확인되면 품목별로 이메일 보내기"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"청구서를 승인할 때, 이 서식 기반으로 이메일이 고객에게 전송됩니다. 고객은 이메일 서식에 링크된 각 품목에 대한 이메일을 받게 됩니다."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server saas~12.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-12 11:32+0000\n"
"PO-Revision-Date: 2019-08-26 09:13+0000\n"
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entries"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,66 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# 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:54+0000\n"
"Last-Translator: Martin Trigaux, 2023\n"
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "ສິນຄ້າ"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,74 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
# Jonas Zinkevicius <jozi@odoo.com>, 2022
# Linas Versada <linaskrisiukenas@gmail.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:54+0000\n"
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatinis el. laiškas su sąskaita"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Turinys"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "El. laiško šablonas"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Žurnalo įrašas"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produktas"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Produkto laiško šablonas"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Siųsti konkrečiam produktui pritaikyt1 el. laišką, kai sąskaita faktūra yra "
"patvirtinta."
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Kai sąskaita patvirtinama, vartotojui pagal šį šabloną bus nusiunčiamas el. "
"laiškas. Klientas gaus laišką kiekvienam produktui, susietam su laiško "
"šablonu."

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# ievaputnina <ievai.putninai@gmail.com>, 2022
# Martin Trigaux, 2022
# Arnis Putniņš <arnis@allegro.lv>, 2022
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
# Will Sensors, 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:54+0000\n"
"Last-Translator: Will Sensors, 2023\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automātiski nosūtīt e-pastu veidojot rēķinu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Galvenā daļa"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-pasta veidne"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Grāmatojumi"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkts"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Product Email Template"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Kad rēķins ir apstirināts, nosūtīt produktam atbilstošu epastu."
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/"
"mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Тело"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr "Урнек за е-пошта"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Фактура"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr "Разно"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr "Тренинг преку интернет"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr "Е-маил урнек за производи"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Урнек на производ"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,66 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "ഇമെയിൽ ടെംപ്ലേറ്റ്"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "ജേണൽ എൻട്രി"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "പ്രോഡക്റ്റ്"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,72 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
# Bayarkhuu Bataa, 2022
# Nurbahyt Kh <nurbahyt.kh@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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Бие"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Имэйл загвар"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Ажил гүйлгээ"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Бараа"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Барааны имэйл үлгэр"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Нэхэмжлэх батлагдах үед бараатай холбоотой имэйл илгээх"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Нэхэмжлэлийг батлахад энэ үлгэр дээр суурилсан эмэйл захиалагчид руу "
"илгээгддэг. Захиалагч нь эмэйл үлгэртэй холбогдсон бараа бүрийн хувь эмэйл "
"хүлээж авдаг."

View file

@ -0,0 +1,66 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Mehjabin Farsana, 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:54+0000\n"
"Last-Translator: Mehjabin Farsana, 2022\n"
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Kemasukan jurnal"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produk"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,67 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Marius Stedjan <marius@stedjan.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:54+0000\n"
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\n"
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Brødtekst"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-postmal"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Bilag"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Mal for produkt-e-post"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Send et produktspesifikk e-post så snart fakturaen er bekreftet"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Jolien De Paepe, 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:54+0000\n"
"Last-Translator: Jolien De Paepe, 2023\n"
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatische e-mail bij facturatie"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Inhoud"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-mailsjabloon"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Boeking"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Product"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Product e-mailsjabloon"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Verzend een product specifieke e-mail wanneer de factuur is bevestigd."
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Wanneer je een factuur bevestigd wordt er een e-mail verzonden naar de klant"
" gebaseerd op de sjabloon. De klant ontvangt een e-mail voor elk product "
"gekoppeld aan een e-mailsjabloon."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,73 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatyczny email przy fakturze"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Treść"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Szablon wiadomości"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Zapis dziennika"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Szablon email dla produktu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Wyślij email dotyczący produktu gdy faktura jest zatwierdzona"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Po zatwierdzeniu faktury E-mail zostanie wysłany do klienta w oparciu o ten "
"szablon. Klient otrzyma e-mail dla każdego produktu połączonego z szablonem "
"e-mail."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,74 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Manuela Silva <mmsrs@sky.com>, 2022
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
# Luiz Fernando <lfpsgs@outlook.com>, 2022
# Nuno Silva <nuno.silva@arxi.pt>, 2022
# Pedro Castro Silva <pedrocs@exo.pt>, 2022
# Ricardo Martins <ricardo.nbs.martins@gmail.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:54+0000\n"
"Last-Translator: Ricardo Martins <ricardo.nbs.martins@gmail.com>, 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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Corpo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Modelo de Email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Lançamento de Diário"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produto"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Modelo de Email do produto"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Ao validar uma fatura, um email será enviado para o cliente baseado no "
"modelo. O cliente receberá um e-mail para cada produto ligado a um modelo de"
" e-mail."

View file

@ -0,0 +1,69 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# 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:54+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "E-mail Automático ao Faturar"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Conteúdo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Modelo de E-mail"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Lançamento de Diário"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produto"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Modelo de E-mail do Produto"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Envie um e-mail específico do produto uma vez que a fatura é validada"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Ao validar uma nota fiscal, um email será enviado para o cliente baseado "
"neste modelo. O cliente receberá um e-mail para cada produto associado a um "
"modelo de e-mail."

View file

@ -0,0 +1,74 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# sharkutz <sharkutz4life@yahoo.com>, 2022
# Martin Trigaux, 2022
# Cozmin Candea <office@terrabit.ro>, 2022
# Foldi Robert <foldirobert@nexterp.ro>, 2022
# Larisa_nexterp, 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:54+0000\n"
"Last-Translator: Larisa_nexterp, 2025\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "E-mail automat la factură"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Conținut"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Șablon email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Notă contabilă"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produs"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Șablon email produs"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Trimiteți un e-mail specific produsului odată ce factura a fost validată"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"La validarea unei facturi, un e-mail va fi trimis clientului pe baza acestui"
" șablon. Clientul va primi un e-mail pentru fiecare produs asociat unui "
"șablon de e-mail."

View file

@ -0,0 +1,73 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
# Martin Trigaux, 2022
# Irina Fedulova <istartlin@gmail.com>, 2022
# Смородин Даниил, 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:54+0000\n"
"Last-Translator: Смородин Даниил, 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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Автоматическая электронная почта в счете-фактуре"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Содержимое"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Шаблон письма"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Запись журнала"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Продукт"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Шаблон письма о товаре"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Отправить электронную почту по конкретному товару, после подтверждения счета"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"При проверке счета-фактуры по электронной почте будет отправлено письмо "
"заказчику на основе этого шаблона. Клиент получит по электронной почте "
"письмо для каждого продукта, связанного с шаблоном электронной почты."

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Jan Prokop, 2022
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 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:54+0000\n"
"Last-Translator: Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatický email pri fakturácii"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Telo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Šablóna emailu"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Vstup účtovnej knihy"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Emailová šablóna produktu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Zaslať produktovo špecifický mail akonáhle je faktúra overená"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Pri overovaní faktúry bude zaslaný email zákazníkovi založený na tejto "
"šablóne. Zákazník dostane email pre každý výrobok spojený s emailovou "
"šablónou."

View file

@ -0,0 +1,68 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
# Martin Trigaux, 2022
# Tadej Lupšina <tadej@hbs.si>, 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:54+0000\n"
"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2022\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Vsebina"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Predloga e-pošte"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Temeljnica"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Predloga e-pošte za proizvod"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Pošlji za proizvod določeno e-poštno sporočilo, ko je račun potrjen"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# コフスタジオ, 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatic Email at Invoice"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Telo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Email šablon"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Sadržaj dnevnika"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Product Email Template"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Send a product-specific email once the invoice is validated"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."

View file

@ -0,0 +1,670 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux <mat@odoo.com>, 2017
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: #333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: #646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: #333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: #646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following <b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: #333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: #646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help you discover Odoo in an easy way. Their main objective is to present the different applications, menus, view types, shortcuts, field types, wizards, actions, etc. It will help you to discover how to navigate in Odoo!<br/><br/>\n"
" Therefore, the Introduction is compulsory for everyone, even if you need to learn a specific module given on an other date. This obligation has been made to make sure that you are not lost if you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real opportunities</li>\n"
" <li>Improve the productivity of the sales force</li>\n"
" <li>Access all documents and messages related to one lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to produce\n"
" accurate sales forecasts at the individual and group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On demand / On\n"
" Delivery Order), Shipping policy (At once / Each product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for service)</li>\n"
" <li>Ensure that sales orders are properly invoiced by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sales order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: #646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management integrated, each user has an access to its relevant information. No overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on historical data</li>\n"
" <li>Centralize all the data to be able to build reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales demands! Thanks to this integration, you will be able to automate the ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or accounting transactions</li>\n"
" <li>Carry out payments easily and adequately reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: #646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and issues</li>\n"
" <li>Discover the Kanban view to quickly operate some actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project has been planned and adapt it according to new elements or to the people agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on historical data</li>\n"
" <li>Centralize all the data to be able to build reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Leaves:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by each employee</li>\n"
" <li>Allow managers to approve leave requests and plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sales orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific contract in one single point</li>\n"
" <li>Perform the invoicing from one single place (Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: #646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, flexible and complete. It is based on the concept of double entry that revolutionized accounting: Nothing lost, everything moved. In Odoo, we dont talk about disappearance, consumption or loss of products: instead we speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a manufacturing order generated based on a request coming from a customer without any manual operation. This integration of those two aplications allows you to perform the following flow in an automated way: Sales order > Stock level verification > Production of the missing units > Receival in stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo will guide you for this phase thanks to a FAQ directly integrated into the import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: #646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define discounts</li>\n"
" <li>Allow different pricing by customer and/or vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based environment, which means any computer with a browser can host the POS. The POS is a two-part system with a front-end (interaction with the client) and a back-end (managers can configure the system, print reports, analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having an offline mode is of prime interest: Connexion to server shutdown at a big supermarket / Use in environments that requires mobility but without wifi / Use in large environments like restaurants and gardens / Use in low tech environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: #333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: #646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the training if you are interested in preparing your live sessions ahead of time. Moreover, the number of participants is limited per online session which is another reason to consider registering early and securing your seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what was covered in the videos. Definitely a good start for building up a solid base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He was well informed and interactive online and offline. Thank you so much for the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the possibilities of Odoo and I believe the major aspects were covered very well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he understands the issues of the trainees very fast and provided answers with the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Tijelo"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email"
msgstr "E-mail"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Šablon poruka"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "Faktura"
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product_email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr "Predložak proizvoda"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is paid"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product_email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,73 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
# Kim Asplund <kim.asplund@gmail.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:54+0000\n"
"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2022\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Automatisk e-post vid fakturering"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Bulk"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-postmall"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Verifikat"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "E-postmall för produkt"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Skicka ett produktspecifikt e-postmeddelande när fakturan är validerad"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Vid validering av en faktura kommer ett e-postmeddelande att skickas till "
"kunden baserat på denna mall. Kunden kommer att få ett e-postmeddelande för "
"varje produkt kopplad till en e-postmall."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Wichanon Jamwutthipreecha, 2022
# Martin Trigaux, 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:54+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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "อีเมลอัตโนมัติในใบแจ้งหนี้"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "เนื้อความ"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "เทมเพลตอีเมล"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "รายการบันทึกประจำวัน"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "สินค้า"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Product Email Template"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "ส่งอีเมลเฉพาะสินค้าเมื่อใบแจ้งหนี้ได้รับการตรวจสอบแล้ว"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"เมื่อตรวจสอบใบแจ้งหนี้ อีเมลจะถูกส่งไปยังลูกค้าตามเทมเพลตนี้ "
"ลูกค้าจะได้รับอีเมลสำหรับแต่ละสินค้าที่เชื่อมโยงกับเทมเพลตอีเมล"

View file

@ -0,0 +1,74 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# abc Def <hdogan1974@gmail.com>, 2022
# Martin Trigaux, 2022
# Murat Kaplan <muratk@projetgrup.com>, 2022
# Ediz Duman <neps1192@gmail.com>, 2022
# Yedigen, 2022
# Ayhan KIZILTAN <akiziltan76@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:54+0000\n"
"Last-Translator: Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2022\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Faturada Otomatik E-posta "
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Gövde"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "E-posta Şablonu"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Yevmiye Kaydı"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Ürün"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Ürün E-posta Şablonu"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Fatura doğrulandıktan sonra ürüne özel bir e-posta gönderin"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Bir fatura doğrulanırken, müşteriye bu şablona dayalı bir eposta "
"gönderilecektir. Bu müşteri bu şablona bağlı her ürün için bir eposta "
"alacaktır."

View file

@ -0,0 +1,71 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# 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:54+0000\n"
"Last-Translator: Martin Trigaux, 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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Автоматична електронна пошта в рахунку-фактурі"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Тіло листа"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Шаблон ел. листа"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Запис у журналі"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Товар"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Шаблон електронної пошти отвару"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr ""
"Надішліть електронну пошту, що відповідає конкретному товару, після "
"підтвердження рахунку"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"При підтвердженні рахунка-фактури на основі цього шаблону буде надіслано "
"електронне повідомлення. Клієнт отримає електронний лист для кожного товару,"
" пов'язаного із шаблоном електронної пошти."

View file

@ -0,0 +1,70 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 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:54+0000\n"
"Last-Translator: Thi Huong Nguyen, 2023\n"
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "Email tự động khi xuất hóa đơn"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "Thân"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "Mẫu email"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "Bút toán "
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "Sản phẩm"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "Mẫu email sản phẩm"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "Gửi email về sản phẩm cụ thể sau khi hóa đơn được xác thực"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr ""
"Khi xác thực hóa đơn, một email sẽ được gửi cho khách hàng dựa trên mẫu này."
" Khách hàng sẽ nhận được email cho mỗi sản phẩm được liên kết với một mẫu "
"email."

View file

@ -0,0 +1,67 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Jeffery CHEN <jeffery9@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:54+0000\n"
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2023\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: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "自动发送EMail结算单"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "正文"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "EMail模板"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "日记账分录"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "产品"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "产品电子邮件模板"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "结算单验证后,发送针对特定产品的电子邮件"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr "当确认结算单的时候,根据这个模板生成的邮件自动发送。对于每个产品模板来说,客户会收到邮件"

View file

@ -0,0 +1,856 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 9.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
"PO-Revision-Date: 2016-01-13 08:54+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/odoo/odoo-9/"
"language/zh_HK/)\n"
"Language: zh_HK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model:mail.template,body_html:product_email_template.product_online_training_email_template
msgid ""
" \n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Online Training\n"
" </div>\n"
" <div style=\"height:auto;text-left: center;font-size : 16px;color: "
"#646464;margin-top:30px;margin-left:15px;margin-right:5px;\">\n"
" These courses feature the same high quality course content found in "
"our traditional classroom trainings, supplemented with\n"
" modular sessions and cloud-based labs. Many of our online learning "
"courses also include dozens of recorded webinars and live\n"
" sessions by our senior instructors.\n"
" </div>\n"
" <div style=\"height: auto;margin-top:30px;margin-bottom:10px;margin-"
"left:20px;color: #646464;font-size:16px;\">\n"
" <strong>Your advantages</strong>\n"
" <ul>\n"
" <li>Modular approach applied to the learning method</li>\n"
" <li>New interactive learning experience</li>\n"
" <li>Lower training budget for the same quality courses</li>\n"
" <li>Better comfort to facilitate your learning process</li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:30px;font-weight: 300;\">\n"
" Structure of the Training\n"
" </div>\n"
" <div>\n"
" <table>\n"
" <tr>\n"
" <td>\n"
" <img src=\"/product_email_template/static/img/"
"online_training.png\"/>\n"
" </td>\n"
" <td style=\"height: auto;margin-top:10px;margin-bottom:10px;"
"font-size:18px;color: #646464;\">\n"
" <strong>There are three components to the training</"
"strong>\n"
" <ul>\n"
" <li>Videos with detailed demos</li>\n"
" <li>Hands-on exercises and their solutions</li>\n"
" <li>Live Q&A sessions with a trainer</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 14px;color: "
"#646464;margin-top:10px;margin-left:15px;\">\n"
" The 5-day training is modular, which means that you can choose to "
"participate in the full training or to just 1 or 2 modules.\n"
" Nevertheless, <b>the first day of the training is compulsory</b> for "
"everyone. The Monday is compulsory because the\n"
" introduction of Odoo is important before going through the other "
"modules.<br/><br/>\n"
" Each day of the week starts from 9 AM (CEST/PST) to 12 PM (CEST/"
"PST). A Q&A session will be hosted by an Odoo trainer.\n"
" Each day, the participants are expected to have done the following "
"<b>BEFORE</b> attending the Q&A session:\n"
" <ul>\n"
" <li>Watch the videos for this day</li>\n"
" <li>Do the related exercises (written solutions will be provided "
"upfront as well)</li>\n"
" <li>Send their questions by email before 5PM (CEST/PST) on the "
"previous business day</li>\n"
" </ul><br/>\n"
" The Q&A session will be hosted on a web conference service.<b> A "
"stable internet connection is required.</b> The trainer will\n"
" screen the questions for the day and select the most relevant ones "
"to be answered during the session. The purpose of the\n"
" <b>Q&A session is not to cover questions related to a specific "
"implementation project </b>or company-specific business\n"
" workflows. The <b>questions should be about the material covered in "
"the videos </b>and the exercises and should benefit\n"
" the other participants of the training as well.<br/>\n"
" Each day of the week is dedicated to specific applications in Odoo "
"as per the following planning:\n"
" <ul style=\"color: #6d57e0\">\n"
" <li>\n"
" <strong>Monday: </strong>\n"
" Introduction, CRM, Sales Management\n"
" </li>\n"
" <li>\n"
" <strong>Tuesday: </strong>\n"
" Access rights, Purchase, Sales &amp; Purchase management, "
"Financial accounting\n"
" </li>\n"
" <li>\n"
" <strong>Wednesday: </strong>\n"
" Project management, Human resources, Contract management\n"
" </li>\n"
" <li>\n"
" <strong>Thursday: </strong>\n"
" Warehouse management, Manufacturing (MRP) &amp; Sales, "
"Import/Export\n"
" </li>\n"
" <li>\n"
" <strong>Friday: </strong>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" </li>\n"
" </ul>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 40px;color: "
"#333333;margin-top:40px;font-weight: 300;\">\n"
" Content of the Training\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Monday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Introduction, CRM & Sales\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction: Get familiar with the V7.</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Odoos architecture</li>\n"
" <li>How to create an Odoo Online instance</li>\n"
" <li>List and form views, search and filter features</"
"li>\n"
" <li>Tooltips and drill-downs</li>\n"
" <li>Advanced navigation</li>\n"
" <li>Calendar, Graph, Kanban and Gantt views</li>\n"
" <li>Social network features: emailing, internal "
"communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" The introduction exercises have been created to help "
"you discover Odoo in an easy way. Their main objective is to present the "
"different applications, menus, view types, shortcuts, field types, wizards, "
"actions, etc. It will help you to discover how to navigate in Odoo!<br/></"
"br>\n"
" Therefore, the Introduction is compulsory for "
"everyone, even if you need to learn a specific module given on an other "
"date. This obligation has been made to make sure that you are not lost if "
"you arrive in the middle of the training for another module.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">CRM Module</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage Lead & Opportunities</li>\n"
" <li>Call, Meeting</li>\n"
" <li>Partners & contacts</li>\n"
" <li>Automated actions</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Track all leads coming in and push them to real "
"opportunities</li>\n"
" <li>Improve the productivity of the sales force</"
"li>\n"
" <li>Access all documents and messages related to one "
"lead/opportunity in one place</li>\n"
" <li>Track the sales pipeline by month and stage to "
"produce\n"
" accurate sales forecasts at the individual and "
"group\n"
" levels</li>\n"
" <li>Track individual performance of sales people</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Sales Module</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customers</li>\n"
" <li>Products to sell</li>\n"
" <li>Manual discounts</li>\n"
" <li>Margins</li>\n"
" <li>Sales & Warehouse: Invoicing control (On "
"demand / On\n"
" Delivery Order), Shipping policy (At once / Each "
"product\n"
" when available)</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Register orders from customers and create "
"invoices</li>\n"
" <li>Schedule deliveries (for products) or tasks (for "
"service)</li>\n"
" <li>Ensure that sales orders are properly invoiced "
"by tracking pending sales orders</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>CRM & Sales management:</strong>\n"
" <ul>\n"
" <li>From an opportunity to a sale order</li>\n"
" <li>Claims</li>\n"
" <li>Aftersale communication</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo can work with independent applications, so the\n"
" whole commercial process can be integrated together in\n"
" order to accomplish complete business flows.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Tuesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Access rights, Sales & Purchase, Financial accounting\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Access rights</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Users</li>\n"
" <li>Groups</li>\n"
" <li>Access rights and access rules</li>\n"
" <li>Modules configuration</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Thanks to the integrated access rights management "
"integrated, each user has an access to its relevant information. No "
"overloaded screen with a lot of irrelevant data, no unwanted menu, etc. Only "
"a clean interface!\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Purchase</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Vendors</li>\n"
" <li>Products</li>\n"
" <li>Request for Quotation</li>\n"
" <li>Purchase order</li>\n"
" <li>Invoicing & Invoice control</li>\n"
" <li>Incoming order (Complete/partial receipt)</li>\n"
" <li>Purchase requisition</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>Sales & Purchase management</strong>\n"
" <ul>\n"
" <li>Make to order product</li>\n"
" <li>Retailer process: buy a product and sell it "
"without any customization/manufacturing</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Keep control of the replenishment process based on sales "
"demands! Thanks to this integration, you will be able to automate the "
"ordering for the missing units ordered by a customer\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Financial accounting</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Invoices</li>\n"
" <li>Refunds</li>\n"
" <li>Journal Entries & Reconciliations</li>\n"
" <li>Reports / Closing of fiscal year</li>\n"
" <li>Accounts</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Rapidly encode your financial operations or "
"accounting transactions</li>\n"
" <li>Carry out payments easily and adequately "
"reconcile these payments with invoices</li>\n"
" <li>Quick creation of invoices with pre-set defaults "
"on debtor/creditor and income/expense accounts</li>\n"
" <li>Multiple manners to reconcile</li>\n"
" <li>Configuration of accounts to ensure correct "
"display in balance sheet and profit & loss statement</li>\n"
" <li>Apply correct deferral methods to ensure the "
"close of the fiscal year</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Wednesday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Project management, Human resources, Contract management\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Project Management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Projects</li>\n"
" <li>Tasks</li>\n"
" <li>Issues</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage and follow your projects, tasks and "
"issues</li>\n"
" <li>Discover the Kanban view to quickly operate some "
"actions and to quickly detect any bottlenecks in your projects flows</li>\n"
" <li>Discover the Gantt view to see how your project "
"has been planned and adapt it according to new elements or to the people "
"agenda</li>\n"
" <li>Define project members & delegate tasks</li>\n"
" <li>Create automatically timesheet lines in the "
"Human Resources menu from recorded work activities</li>\n"
" <li>Track and invoice (to customers) the costs "
"associated to a project</li>\n"
" <li>Manage a support ticket system</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Human Resources</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Employees</li>\n"
" <li>Recruitment</li>\n"
" <li>Expenses</li>\n"
" <li>Allocations and leaves requests</li>\n"
" <li>Time management: timesheet and timesheet lines</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <strong>About Recruiting:</strong>\n"
" <ul>\n"
" <li>Better negotiate volumes and prices based on "
"historical data</li>\n"
" <li>Centralize all the data to be able to build "
"reporting and statistics</li>\n"
" <li>Control the invoicing process</li>\n"
" <li>Work with purchase requisitions to ask different "
"vendors to submit quotations</li>\n"
" </ul>\n"
" <strong>About Holidays:</strong>\n"
" <ul>\n"
" <li>Track the number of vacation days accrued by "
"each employee</li>\n"
" <li>Allow managers to approve leave requests and "
"plan backups for their teams</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Contract management</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Contracts</li>\n"
" <li>Invoicing methods\n"
" <li>Sale orders</li>\n"
" <li>Timesheets</li>\n"
" <li>Expenses</li>\n"
" </li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Centralize the data related to a specific "
"contract in one single point</li>\n"
" <li>Perform the invoicing from one single place "
"(Sales order / Timesheet / Expenses)</li>\n"
" <li>Follow the renewal process</li>\n"
" <li>Compute statistics based on expected revenues</"
"li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Thursday<hr style=\"display: inline-block; width: "
"15%; margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Warehouse management, Manufacturing (MRP) & Sales, Import/Export\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Warehouse management</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Stock moves</li>\n"
" <li>Inventory</li>\n"
" <li>Partial delivery / receipt</li>\n"
" <li>Units of measure</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo Warehouse Management is at once very simple, "
"flexible and complete. It is based on the concept of double entry that "
"revolutionized accounting: Nothing lost, everything moved. In Odoo, we "
"dont talk about disappearance, consumption or loss of products: instead we "
"speak only of stock moves from one place to another.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Manufacturing (MRP)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Bill of materials</li>\n"
" <li>Multi-level BoM</li>\n"
" <li>Routings</li>\n"
" <li>Work center operations</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Manage the production planning</li>\n"
" <li>Organize the different manufacturing orders to "
"optimize the workload of the different resources</li>\n"
" <li>From an operational perspective, track which "
"products and quantities need to be manufactured</li>\n"
" </ul>\n"
" <strong>As a manager:</strong>\n"
" <ul>\n"
" <li>Define products to be assembled or to be sold as "
"a kit</li>\n"
" <li>Organize the pipeline of the production</li>\n"
" <li>Track the cost of a manufacturing order and "
"measure the efficiency of the department</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <strong>MRP & Sales</strong>\n"
" <ul>\n"
" <li>Product configuration Make to Stock / to Order</"
"li>\n"
" <li>Commercial BoM (kit)</li>\n"
" <li>Just in Time</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" From the sales perspective, you will have a "
"manufacturing order generated based on a request coming from a customer "
"without any manual operation. This integration of those two aplications "
"allows you to perform the following flow in an automated way: Sale order > "
"Stock level verification > Production of the missing units > Receival in "
"stock of the finished goods > Delivery to the customer.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Import/Export</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Import from CSV files</li>\n"
" <li>Export as CSV or as Excel file</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Transfer data from one system to Odoo.</li>\n"
" </ul>\n"
" Odoo offers a simple way to import and export data. Odoo "
"will guide you for this phase thanks to a FAQ directly integrated into the "
"import screen\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"height:auto;text-align: center;font-size : 24px;color: "
"#646464;margin-top:30px;\">\n"
" <hr style=\"display: inline-block; width: 15%; margin-bottom: 4px;"
"margin-right: 25px;\" />Friday<hr style=\"display: inline-block; width: 15%; "
"margin-bottom: 4px;margin-left: 25px;\" /><br/><br/>\n"
" Pricelists, Point of Sale (POS), Introduction to report "
"customization\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Pricelists</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Prices for returning customers</li>\n"
" <li>Prices in foreign currencies (with exchange "
"fees)</li>\n"
" <li>Retailer prices (based on a minimal margin)</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Keep control on the pricing policy</li>\n"
" <li>Allow discounts for some periods</li>\n"
" <li>Ensure your margins even when you define "
"discounts</li>\n"
" <li>Allow different pricing by customer and/or "
"vendor</li>\n"
" <li>Update the prices in an easy way</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Point of Sale (POS)</div>\n"
" <table cellspacing=\"5\">\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Payment methods (journals)</li>\n"
" <li>POS Configuration</li>\n"
" <li>POS front-end</li>\n"
" <li>POS back-end</li>\n"
" <li>Shops</li>\n"
" <li>Sessions</li>\n"
" <li>POS Orders</li>\n"
" <li>Re-Invoicing</li>\n"
" <li>Scanning / Self-scanning</li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" Odoo POS is the first POS running in a 100% web based "
"environment, which means any computer with a browser can host the POS. The "
"POS is a two-part system with a front-end (interaction with the client) and "
"a back-end (managers can configure the system, print reports, "
"analyse, ...)<br/><br/>\n"
" <strong>About the front-end:</strong>\n"
" <ul>\n"
" <li>Offline mode. Imagine several cases were having "
"an offline mode is of prime interest: Connexion to server shutdown at a big "
"supermarket / Use in environments that requires mobility but without wifi / "
"Use in large environments like restaurants and gardens / Use in low tech "
"environments</li>\n"
" </ul>\n"
" <strong>About the back-end:</strong>\n"
" <ul>\n"
" <li>Configure the products being sold in the POS</"
"li>\n"
" <li>Configure the payments methods</li>\n"
" <li>Print daily sales report</li>\n"
" <li>Analyze sales</li>\n"
" </ul>\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" <div style=\"text-align: left;font-size : 24px;color: #646464;margin-"
"top:30px;\">Introduction to report customization</div>\n"
" <table>\n"
" <tr style=\"text-align: center;font-size : 20px;color: #FFFFFF;"
"background-color:#969696;\">\n"
" <th>Content</th>\n"
" <th>What will you learn?</th>\n"
" </tr>\n"
" <tr style=\"text-align: left;font-size : 16px;color: #646464;"
"\">\n"
" <td style=\"width:50%;\">\n"
" <ul>\n"
" <li>Customize the layout of your invoices</li>\n"
" <li>Change the footer/header of documents</li>\n"
" <li>Add a field in a standard document / report</"
"li>\n"
" </ul>\n"
" </td>\n"
" <td style=\"width:50%;\">\n"
" This features will help you to fully customize the "
"standard documents made from Odoo.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"\" >\n"
" <table cellspacing=\"5\" align=\"center\" cellpadding=\"5\">\n"
" <tr style=\"font-size : 20px;color: #333333;margin-top:30px;\">\n"
" <td>English</td>\n"
" <td>English</td>\n"
" <td>Spanish</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #646464;\">\n"
" <td>Europe</td>\n"
" <td>USA & Canada</td>\n"
" <td>USA & Latin America</td>\n"
" </tr>\n"
" <tr style=\"font-size : 10px;color: #FFFFFF;background-color:"
"#8b5bdd;\">\n"
" <td><a href=\"http://onlinetrainingencet.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingenpst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" <td><a href=\"http://onlinetrainingespst.eventbrite.com\" "
"style=\"text-decoration:none;color:#FFFFFF;\" target=_new>Register</a></td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
" <hr color=\"DCDCFB\"/>\n"
" <div style=\"height:auto;text-align: center;font-size : 30px;color: "
"#333333;margin-top:10px;\">\n"
" Training Material\n"
" </div>\n"
" <div style=\"height:auto;text-align: left;font-size : 16px;color: "
"#646464;margin-top:30px;\">\n"
" As soon as registration will be finalized (ie. payment "
"confirmation), the participants will be provided with the material listed\n"
" below:\n"
" <ul>\n"
" <li>Access to online videos with detailed demos</li>\n"
" <li>Training material with exercises</li>\n"
" <li>Written solutions to the exercises</li>\n"
" </ul>\n"
" Therefore, there is an advantage to registering early to the "
"training if you are interested in preparing your live sessions ahead of "
"time. Moreover, the number of participants is limited per online session "
"which is another reason to consider registering early and securing your "
"seat.\n"
" </div>\n"
" <div style=\"text-align: center;background-color:#FFFFFF;margin-top:30px;"
"font-size:20px;color:#4e66e7\">\n"
" <table cellspacing=\"5\">\n"
" <tr>\n"
" <td>\n"
" With the live sessions, we learned a lot more than what "
"was covered in the videos. Definitely a good start for building up a solid "
"base of working knowledge of Odoo.\n"
" </td>\n"
" <td>\n"
" The trainer did a wonderful job with the training! He "
"was well informed and interactive online and offline. Thank you so much for "
"the experience! \n"
" </td>\n"
" </tr>\n"
" <tr>\n"
" <td>\n"
" It would be very difficult to cover all of the "
"possibilities of Odoo and I believe the major aspects were covered very "
"well \n"
" </td>\n"
" <td>\n"
" The trainer has a very good knowledge of the subject, he "
"understands the issues of the trainees very fast and provided answers with "
"the right level of illustration.\n"
" </td>\n"
" </tr>\n"
" </table>\n"
" </div>\n"
"</div>\n"
" \n"
" "
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_invoice
msgid "Invoice"
msgstr "發票"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Invoice Confirmation Email"
msgstr ""
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Miscellaneous"
msgstr ""
#. module: product_email_template
#: model:mail.template,subject:product_email_template.product_online_training_email_template
#: model:product.product,name:product_email_template.product_online_training
#: model:product.template,name:product_email_template.product_online_training_product_template
msgid "Online Training"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_template_email_template_id
msgid "Product Email Template"
msgstr ""
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product Template"
msgstr ""
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_template_email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to "
"an email template."
msgstr ""

View file

@ -0,0 +1,68 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_email_template
#
# Translators:
# Martin Trigaux, 2022
# Wil Odoo, 2024
# Tony Ng, 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:54+0000\n"
"Last-Translator: Tony Ng, 2024\n"
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Automatic Email at Invoice"
msgstr "憑單上的自動電子郵件"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
msgid "Body"
msgstr "內文"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.email_template_form_simplified
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Email Template"
msgstr "電郵範本"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_account_move
msgid "Journal Entry"
msgstr "日記帳分錄"
#. module: product_email_template
#: model:ir.model,name:product_email_template.model_product_template
msgid "Product"
msgstr "商品"
#. module: product_email_template
#: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,field_description:product_email_template.field_product_template__email_template_id
msgid "Product Email Template"
msgstr "產品電郵範本"
#. module: product_email_template
#: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view
msgid "Send a product-specific email once the invoice is validated"
msgstr "發票獲驗證後,立刻傳送該特定產品的電郵"
#. module: product_email_template
#: model:ir.model.fields,help:product_email_template.field_product_product__email_template_id
#: model:ir.model.fields,help:product_email_template.field_product_template__email_template_id
msgid ""
"When validating an invoice, an email will be sent to the customer based on "
"this template. The customer will receive an email for each product linked to"
" an email template."
msgstr "驗證發票時,會根據此範本發送電子郵件給客戶。就每項已連結至電郵範本的產品,客戶都將收到電子郵件。"

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
from . import product
from . import account_move

View file

@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
from odoo import api, models, SUPERUSER_ID
class AccountMove(models.Model):
_inherit = 'account.move'
def invoice_validate_send_email(self):
if self.env.su:
# sending mail in sudo was meant for it being sent from superuser
self = self.with_user(SUPERUSER_ID)
for invoice in self.filtered(lambda x: x.move_type == 'out_invoice'):
# send template only on customer invoice
# subscribe the partner to the invoice
if invoice.partner_id not in invoice.message_partner_ids:
invoice.message_subscribe([invoice.partner_id.id])
for line in invoice.invoice_line_ids:
if line.product_id.email_template_id:
invoice.message_post_with_template(
line.product_id.email_template_id.id,
composition_mode="comment",
email_layout_xmlid="mail.mail_notification_light"
)
return True
def _post(self, soft=True):
# OVERRIDE
posted = super()._post(soft)
posted.invoice_validate_send_email()
return posted

View file

@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
from odoo import fields, models
class ProductTemplate(models.Model):
""" Product Template inheritance to add an optional email.template to a
product.template. When validating an invoice, an email will be send to the
customer based on this template. The customer will receive an email for each
product linked to an email template. """
_inherit = "product.template"
email_template_id = fields.Many2one('mail.template', string='Product Email Template',
help='When validating an invoice, an email will be sent to the customer '
'based on this template. The customer will receive an email for each '
'product linked to an email template.')

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Some files were not shown because too many files have changed in this diff Show more