mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-18 04:12:07 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
60
odoo-bringout-oca-ocb-repair/README.md
Normal file
60
odoo-bringout-oca-ocb-repair/README.md
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# Repairs
|
||||
|
||||
|
||||
The aim is to have a complete module to manage all products repairs.
|
||||
====================================================================
|
||||
|
||||
The following topics are covered by this module:
|
||||
------------------------------------------------------
|
||||
* Add/remove products in the reparation
|
||||
* Impact for stocks
|
||||
* Invoicing (products and/or services)
|
||||
* Warranty concept
|
||||
* Repair quotation report
|
||||
* Notes for the technician and for the final customer
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-repair
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- stock
|
||||
- sale_management
|
||||
- account
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Repairs
|
||||
- **Version**: 1.0
|
||||
- **Category**: Inventory/Inventory
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `repair`.
|
||||
|
||||
## 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
|
||||
32
odoo-bringout-oca-ocb-repair/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-repair/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Repair Module - repair
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-repair/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-repair/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for repair. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-repair/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-repair/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
7
odoo-bringout-oca-ocb-repair/doc/DEPENDENCIES.md
Normal file
7
odoo-bringout-oca-ocb-repair/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [stock](../../odoo-bringout-oca-ocb-stock)
|
||||
- [sale_management](../../odoo-bringout-oca-ocb-sale_management)
|
||||
- [account](../../odoo-bringout-oca-ocb-account)
|
||||
4
odoo-bringout-oca-ocb-repair/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-repair/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon repair or install in UI.
|
||||
7
odoo-bringout-oca-ocb-repair/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-repair/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-repair"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-repair"
|
||||
```
|
||||
24
odoo-bringout-oca-ocb-repair/doc/MODELS.md
Normal file
24
odoo-bringout-oca-ocb-repair/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in repair.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class repair_fee
|
||||
class repair_line
|
||||
class repair_order
|
||||
class repair_tags
|
||||
class account_move
|
||||
class account_move_line
|
||||
class mail_compose_message
|
||||
class product_product
|
||||
class stock_lot
|
||||
class stock_move
|
||||
class stock_picking
|
||||
class stock_picking_type
|
||||
class stock_traceability_report
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-repair/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-repair/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: repair. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon repair
|
||||
- License: LGPL-3
|
||||
24
odoo-bringout-oca-ocb-repair/doc/REPORTS.md
Normal file
24
odoo-bringout-oca-ocb-repair/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Reports
|
||||
|
||||
Report definitions and templates in repair.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
```
|
||||
|
||||
## Available Reports
|
||||
|
||||
### PDF/Document Reports
|
||||
- **Quotation / Order** (PDF/Print)
|
||||
|
||||
|
||||
## Report Files
|
||||
|
||||
- **repair_reports.xml** (XML template/definition)
|
||||
- **repair_templates_repair_order.xml** (XML template/definition)
|
||||
|
||||
## Notes
|
||||
- Named reports above are accessible through Odoo's reporting menu
|
||||
- Python files define report logic and data processing
|
||||
- XML files contain report templates, definitions, and formatting
|
||||
- Reports are integrated with Odoo's printing and email systems
|
||||
41
odoo-bringout-oca-ocb-repair/doc/SECURITY.md
Normal file
41
odoo-bringout-oca-ocb-repair/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in repair.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../repair/security/ir.model.access.csv)**
|
||||
- 7 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
## Security Groups & Configuration
|
||||
|
||||
Security groups and permissions defined in:
|
||||
- **[repair_security.xml](../repair/security/repair_security.xml)**
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../repair/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
- **[repair_security.xml](../repair/security/repair_security.xml)**
|
||||
- Security groups, categories, and XML-based rules
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
5
odoo-bringout-oca-ocb-repair/doc/TROUBLESHOOTING.md
Normal file
5
odoo-bringout-oca-ocb-repair/doc/TROUBLESHOOTING.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-repair/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-repair/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon repair
|
||||
```
|
||||
9
odoo-bringout-oca-ocb-repair/doc/WIZARDS.md
Normal file
9
odoo-bringout-oca-ocb-repair/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Wizards
|
||||
|
||||
Transient models exposed as UI wizards in repair.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class MakeInvoice
|
||||
class StockWarnInsufficientQtyRepair
|
||||
```
|
||||
44
odoo-bringout-oca-ocb-repair/pyproject.toml
Normal file
44
odoo-bringout-oca-ocb-repair/pyproject.toml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-repair"
|
||||
version = "16.0.0"
|
||||
description = "Repairs - Repair damaged products"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-stock>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-sale_management>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-account>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["repair"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
5
odoo-bringout-oca-ocb-repair/repair/__init__.py
Normal file
5
odoo-bringout-oca-ocb-repair/repair/__init__.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
43
odoo-bringout-oca-ocb-repair/repair/__manifest__.py
Normal file
43
odoo-bringout-oca-ocb-repair/repair/__manifest__.py
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': 'Repairs',
|
||||
'version': '1.0',
|
||||
'sequence': 230,
|
||||
'category': 'Inventory/Inventory',
|
||||
'summary': 'Repair damaged products',
|
||||
'description': """
|
||||
The aim is to have a complete module to manage all products repairs.
|
||||
====================================================================
|
||||
|
||||
The following topics are covered by this module:
|
||||
------------------------------------------------------
|
||||
* Add/remove products in the reparation
|
||||
* Impact for stocks
|
||||
* Invoicing (products and/or services)
|
||||
* Warranty concept
|
||||
* Repair quotation report
|
||||
* Notes for the technician and for the final customer
|
||||
""",
|
||||
'depends': ['stock', 'sale_management', 'account'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'security/repair_security.xml',
|
||||
'wizard/repair_make_invoice_views.xml',
|
||||
'wizard/stock_warn_insufficient_qty_views.xml',
|
||||
'views/stock_move_views.xml',
|
||||
'views/repair_views.xml',
|
||||
'views/stock_lot_views.xml',
|
||||
'views/stock_picking_views.xml',
|
||||
'report/repair_reports.xml',
|
||||
'report/repair_templates_repair_order.xml',
|
||||
'data/ir_sequence_data.xml',
|
||||
'data/mail_template_data.xml',
|
||||
],
|
||||
'demo': ['data/repair_demo.xml'],
|
||||
'installable': True,
|
||||
'application': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="seq_repair" model="ir.sequence">
|
||||
<field name="name">Repair Order</field>
|
||||
<field name="code">repair.order</field>
|
||||
<field name="prefix">RO/</field>
|
||||
<field name="padding">5</field>
|
||||
<field name="company_id" eval="False"/>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="mail_template_repair_quotation" model="mail.template">
|
||||
<field name="name">Repair: Quotation</field>
|
||||
<field name="model_id" ref="repair.model_repair_order"/>
|
||||
<field name="subject">{{ object.partner_id.name }} Repair Orders (Ref {{ object.name or 'n/a' }})</field>
|
||||
<field name="email_from">{{ (object.create_uid.email_formatted or user.email_formatted) }}</field>
|
||||
<field name="partner_to">{{ object.partner_id.id }}</field>
|
||||
<field name="description">Sent manually when clicking on "Send Quotation" on a repair order</field>
|
||||
<field name="body_html" type="html">
|
||||
<div style="margin: 0px; padding: 0px;">
|
||||
<p style="margin: 0px; padding: 0px;font-size: 13px;">
|
||||
Hello <t t-out="object.partner_id.name or ''">Brandon Freeman</t>,<br/>
|
||||
Here is your repair order <strong t-out="object.name or ''">RO/00004</strong>
|
||||
<t t-if="object.invoice_method != 'none'">
|
||||
amounting in <strong><t t-out="format_amount(object.amount_total, object.pricelist_id.currency_id) or ''">$ 100.00</t>.</strong><br/>
|
||||
</t>
|
||||
<t t-else="">
|
||||
.<br/>
|
||||
</t>
|
||||
You can reply to this email if you have any questions.
|
||||
<br/><br/>
|
||||
Thank you,
|
||||
<t t-if="user.signature">
|
||||
<br />
|
||||
<t t-out="user.signature or ''">--<br/>Mitchell Admin</t>
|
||||
</t>
|
||||
</p>
|
||||
</div></field>
|
||||
<field name="report_template" ref="action_report_repair_order"/>
|
||||
<field name="report_name">{{ (object.name or '').replace('/','_') }}</field>
|
||||
<field name="lang">{{ object.partner_id.lang }}</field>
|
||||
<field name="auto_delete" eval="True"/>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
110
odoo-bringout-oca-ocb-repair/repair/data/repair_demo.xml
Normal file
110
odoo-bringout-oca-ocb-repair/repair/data/repair_demo.xml
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="product_service_order_repair" model="product.product">
|
||||
<field name="name">Repair Services</field>
|
||||
<field name="categ_id" ref="product.product_category_3"/>
|
||||
<field name="standard_price">20.5</field>
|
||||
<field name="list_price">30.75</field>
|
||||
<field name="type">service</field>
|
||||
</record>
|
||||
|
||||
<record id="repair_r1" model="repair.order">
|
||||
<field name="schedule_date" eval="DateTime.today()"/>
|
||||
<field name="address_id" ref="base.res_partner_address_1"/>
|
||||
<field name="guarantee_limit" eval="datetime.today().strftime('%Y-%m-%d')"/>
|
||||
<field name="invoice_method">none</field>
|
||||
<field name="user_id"/>
|
||||
<field name="product_id" ref="product.product_product_3"/>
|
||||
<field name="product_uom" ref="uom.product_uom_unit"/>
|
||||
<field name="partner_invoice_id" ref="base.res_partner_address_1"/>
|
||||
<field name="location_id" ref="stock.stock_location_stock"/>
|
||||
<field name="operations" model="repair.line" eval="[(5, 0, 0), (0, 0, {
|
||||
'location_dest_id': obj().env.ref('product.product_product_11').property_stock_production.id,
|
||||
'location_id': obj().env.ref('stock.stock_location_stock').id,
|
||||
'name': obj().env.ref('product.product_product_11').get_product_multiline_description_sale(),
|
||||
'product_id': obj().env.ref('product.product_product_11').id,
|
||||
'product_uom': obj().env.ref('uom.product_uom_unit').id,
|
||||
'product_uom_qty': '1.0',
|
||||
'price_unit': 50.0,
|
||||
'state': 'draft',
|
||||
'type': 'add',
|
||||
'company_id': obj().env.ref('base.main_company').id,
|
||||
})]"/>
|
||||
<field name="fees_lines" model="repair.fee" eval="[(5, 0, 0), (0, 0, {
|
||||
'name': obj().env.ref('repair.product_service_order_repair').get_product_multiline_description_sale(),
|
||||
'product_id': obj().env.ref('repair.product_service_order_repair').id,
|
||||
'product_uom_qty': 1.0,
|
||||
'product_uom': obj().env.ref('uom.product_uom_unit').id,
|
||||
'company_id': obj().env.ref('base.main_company').id,
|
||||
'price_unit': 50.0,
|
||||
})]"/>
|
||||
<field name="partner_id" ref="base.res_partner_12"/>
|
||||
</record>
|
||||
|
||||
<record id="repair_r0" model="repair.order">
|
||||
<field name="schedule_date" eval="DateTime.today()"/>
|
||||
<field name="product_id" ref="product.product_product_5"/>
|
||||
<field name="product_uom" ref="uom.product_uom_unit"/>
|
||||
<field name="address_id" ref="base.res_partner_address_1"/>
|
||||
<field name="guarantee_limit" eval="datetime.today().strftime('%Y-%m-%d')"/>
|
||||
<field name="invoice_method">after_repair</field>
|
||||
<field name="user_id"/>
|
||||
<field name="partner_invoice_id" ref="base.res_partner_address_1"/>
|
||||
<field name="location_id" ref="stock.stock_location_stock"/>
|
||||
<field name="operations" model="repair.line" eval="[(5, 0, 0), (0, 0, {
|
||||
'location_dest_id': obj().env.ref('product.product_product_12').property_stock_production.id,
|
||||
'location_id': obj().env.ref('stock.stock_location_stock').id,
|
||||
'name': obj().env.ref('product.product_product_12').get_product_multiline_description_sale(),
|
||||
'price_unit': 50.0,
|
||||
'product_id': obj().env.ref('product.product_product_12').id,
|
||||
'product_uom': obj().env.ref('uom.product_uom_unit').id,
|
||||
'product_uom_qty': 1.0,
|
||||
'state': 'draft',
|
||||
'type': 'add',
|
||||
'company_id': obj().env.ref('base.main_company').id,
|
||||
})]"/>
|
||||
<field name="fees_lines" model="repair.fee" eval="[(5, 0, 0), (0, 0, {
|
||||
'name': obj().env.ref('repair.product_service_order_repair').get_product_multiline_description_sale(),
|
||||
'product_id': obj().env.ref('repair.product_service_order_repair').id,
|
||||
'product_uom_qty': 1.0,
|
||||
'product_uom': obj().env.ref('uom.product_uom_unit').id,
|
||||
'price_unit': 50.0,
|
||||
'company_id': obj().env.ref('base.main_company').id,
|
||||
})]"/>
|
||||
<field name="partner_id" ref="base.res_partner_12"/>
|
||||
</record>
|
||||
|
||||
<record id="repair_r2" model="repair.order">
|
||||
<field name="priority">1</field>
|
||||
<field name="schedule_date" eval="DateTime.today() + relativedelta(days=-5)"/>
|
||||
<field name="product_id" ref="product.product_product_6"/>
|
||||
<field name="product_uom" ref="uom.product_uom_unit"/>
|
||||
<field name="address_id" ref="base.res_partner_address_1"/>
|
||||
<field name="guarantee_limit" eval="datetime.today().strftime('%Y-%m-%d')"/>
|
||||
<field name="invoice_method">b4repair</field>
|
||||
<field name="user_id"/>
|
||||
<field name="partner_invoice_id" ref="base.res_partner_address_1"/>
|
||||
<field name="location_id" ref="stock.stock_location_14"/>
|
||||
<field name="operations" model="repair.line" eval="[(5, 0, 0), (0, 0, {
|
||||
'location_dest_id': obj().env.ref('product.product_product_13').property_stock_production.id,
|
||||
'location_id': obj().env.ref('stock.stock_location_stock').id,
|
||||
'name': obj().env.ref('product.product_product_13').get_product_multiline_description_sale(),
|
||||
'price_unit': 50.0,
|
||||
'product_id': obj().env.ref('product.product_product_13').id,
|
||||
'product_uom': obj().env.ref('uom.product_uom_unit').id,
|
||||
'product_uom_qty': 1.0,
|
||||
'state': 'draft',
|
||||
'type': 'add',
|
||||
'company_id': obj().env.ref('base.main_company').id,
|
||||
})]"/>
|
||||
<field name="fees_lines" model="repair.fee" eval="[(5, 0, 0), (0, 0, {
|
||||
'name': obj().env.ref('repair.product_service_order_repair').get_product_multiline_description_sale(),
|
||||
'product_id': obj().env.ref('repair.product_service_order_repair').id,
|
||||
'product_uom_qty': 1.0,
|
||||
'product_uom': obj().env.ref('uom.product_uom_unit').id,
|
||||
'price_unit': 50.0,
|
||||
'company_id': obj().env.ref('base.main_company').id,
|
||||
})]"/>
|
||||
<field name="partner_id" ref="base.res_partner_12"/>
|
||||
</record>
|
||||
</odoo>
|
||||
1456
odoo-bringout-oca-ocb-repair/repair/i18n/af.po
Normal file
1456
odoo-bringout-oca-ocb-repair/repair/i18n/af.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/am.po
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/am.po
Normal file
File diff suppressed because it is too large
Load diff
1517
odoo-bringout-oca-ocb-repair/repair/i18n/ar.po
Normal file
1517
odoo-bringout-oca-ocb-repair/repair/i18n/ar.po
Normal file
File diff suppressed because it is too large
Load diff
1464
odoo-bringout-oca-ocb-repair/repair/i18n/az.po
Normal file
1464
odoo-bringout-oca-ocb-repair/repair/i18n/az.po
Normal file
File diff suppressed because it is too large
Load diff
1456
odoo-bringout-oca-ocb-repair/repair/i18n/be.po
Normal file
1456
odoo-bringout-oca-ocb-repair/repair/i18n/be.po
Normal file
File diff suppressed because it is too large
Load diff
1492
odoo-bringout-oca-ocb-repair/repair/i18n/bg.po
Normal file
1492
odoo-bringout-oca-ocb-repair/repair/i18n/bg.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/bs.po
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/bs.po
Normal file
File diff suppressed because it is too large
Load diff
1551
odoo-bringout-oca-ocb-repair/repair/i18n/ca.po
Normal file
1551
odoo-bringout-oca-ocb-repair/repair/i18n/ca.po
Normal file
File diff suppressed because it is too large
Load diff
1535
odoo-bringout-oca-ocb-repair/repair/i18n/cs.po
Normal file
1535
odoo-bringout-oca-ocb-repair/repair/i18n/cs.po
Normal file
File diff suppressed because it is too large
Load diff
1493
odoo-bringout-oca-ocb-repair/repair/i18n/da.po
Normal file
1493
odoo-bringout-oca-ocb-repair/repair/i18n/da.po
Normal file
File diff suppressed because it is too large
Load diff
1534
odoo-bringout-oca-ocb-repair/repair/i18n/de.po
Normal file
1534
odoo-bringout-oca-ocb-repair/repair/i18n/de.po
Normal file
File diff suppressed because it is too large
Load diff
1144
odoo-bringout-oca-ocb-repair/repair/i18n/el.po
Normal file
1144
odoo-bringout-oca-ocb-repair/repair/i18n/el.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/en_GB.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelled"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Company"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Customer"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Group By"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Invoice"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Invoice Line"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Invoiced"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Price"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Pricelist"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Quantity"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Quotations"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Taxes"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Unit Price"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unit of Measure"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Untaxed Amount"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1539
odoo-bringout-oca-ocb-repair/repair/i18n/es.po
Normal file
1539
odoo-bringout-oca-ocb-repair/repair/i18n/es.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_BO.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Cotización"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Cotización / Pedido"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Cotizaciones"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Base imponible"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-repair/repair/i18n/es_CL.po
Normal file
246
odoo-bringout-oca-ocb-repair/repair/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-23 08:22+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/"
|
||||
"es_CL/)\n"
|
||||
"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: repair
|
||||
#: model_terms:ir.ui.view,arch_db:repair.report_repairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: repair
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields.selection,name:repair.selection__repair_line__state__cancel
|
||||
#: model:ir.model.fields.selection,name:repair.selection__repair_order__state__cancel
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__company_id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__company_id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__company_id
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__create_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__create_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__create_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice__create_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags__create_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__create_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__create_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__create_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice__create_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags__create_date
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__name
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__name
|
||||
#: model_terms:ir.ui.view,arch_db:repair.report_repairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__display_name
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__display_name
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__display_name
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags__display_name
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: repair
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice__id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags__id
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__invoice_id
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__invoice_line_id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__invoiced
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__invoiced
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee____last_update
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line____last_update
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order____last_update
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags____last_update
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__write_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__write_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__write_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice__write_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags__write_uid
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__write_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__write_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__write_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order_make_invoice__write_date
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_tags__write_date
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: repair
|
||||
#: model_terms:ir.ui.view,arch_db:repair.report_repairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Tarifa"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__product_id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__product_id
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__product_id
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__product_uom_qty
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__product_uom_qty
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__quantity
|
||||
#: model_terms:ir.ui.view,arch_db:repair.report_repairorder
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_tree
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields.selection,name:repair.selection__repair_order__state__draft
|
||||
msgid "Quotation"
|
||||
msgstr "Presupuesto"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.actions.report,name:repair.action_report_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Presupuesto / Pedido"
|
||||
|
||||
#. module: repair
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Presupuestos"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__state
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__state
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__price_subtotal
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__tax_id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__tax_id
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__amount_tax
|
||||
#: model_terms:ir.ui.view,arch_db:repair.report_repairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__price_total
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__price_total
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_fee__price_unit
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_line__price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:repair.report_repairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio un."
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_stock_warn_insufficient_qty_repair__product_uom_name
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_tree
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de medida"
|
||||
|
||||
#. module: repair
|
||||
#: model:ir.model.fields,field_description:repair.field_repair_order__amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Total neto"
|
||||
|
||||
#. module: repair
|
||||
#: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr "Total neto"
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_CO.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado(a)"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Dirección de Entrega"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Asociado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de Precios"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Cotización"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Cotización / Orden"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Cotizaciones"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio Unitario"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de Medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Monto Libre de Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_CR.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Dirección de entrega"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Tarifa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Presupuesto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Presupuesto / Pedido"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Presupuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Base imponible"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_DO.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Dirección de entrega"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Tarifa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Cotización"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Cotización / Pedido"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Cotizaciones"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Base imponible"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_EC.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Dirección de entrega"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de precios"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Presupuesto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Petición / Pedido"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Cotizaciones"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unitario"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de Medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Base imponible"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1539
odoo-bringout-oca-ocb-repair/repair/i18n/es_MX.po
Normal file
1539
odoo-bringout-oca-ocb-repair/repair/i18n/es_MX.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_PE.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañia"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Detalle de Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturada"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Socio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Cotización"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Cotizacion"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unitario"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de Medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_PY.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de precios"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Sub-Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio Unitario"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Base imponible"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_VE.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Dirección de entrega"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Tarifa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Presupuesto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Presupuesto / Pedido"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Presupuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Subtotal"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impuestos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidad de medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Base imponible"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1516
odoo-bringout-oca-ocb-repair/repair/i18n/et.po
Normal file
1516
odoo-bringout-oca-ocb-repair/repair/i18n/et.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/eu.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/eu.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "Guztira"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Ezeztatua"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Enpresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Kidea"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Banaketa helbidea"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Deskribapena"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Group By"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Invoice"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Faktura lerroa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Fakturatuta"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Kidea"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Price"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Pricelist"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Produktua"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Kopurua"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Aurrekontua"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Quotation / Order"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Quotations"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Egoera"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Batura partziala"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Zergak"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Unitateko prezioa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Neurketa unitatea"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Zergarik gabea"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1496
odoo-bringout-oca-ocb-repair/repair/i18n/fa.po
Normal file
1496
odoo-bringout-oca-ocb-repair/repair/i18n/fa.po
Normal file
File diff suppressed because it is too large
Load diff
1546
odoo-bringout-oca-ocb-repair/repair/i18n/fi.po
Normal file
1546
odoo-bringout-oca-ocb-repair/repair/i18n/fi.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/fo.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/fo.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Íalt</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Strika"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Fyritøka"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Kundi"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Frágreiðing"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Bólka eftir"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Faktura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Fakturalinja"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Fakturerað"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Prísur"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Vøra"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Nøgd"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Íalt"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Eindarprísur"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1539
odoo-bringout-oca-ocb-repair/repair/i18n/fr.po
Normal file
1539
odoo-bringout-oca-ocb-repair/repair/i18n/fr.po
Normal file
File diff suppressed because it is too large
Load diff
876
odoo-bringout-oca-ocb-repair/repair/i18n/fr_BE.po
Normal file
876
odoo-bringout-oca-ocb-repair/repair/i18n/fr_BE.po
Normal file
|
|
@ -0,0 +1,876 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2015-11-18 13:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language: fr_BE\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: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
" * The 'Draft' status is used when a user is encoding a new and unconfirmed "
|
||||
"repair order. \n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair "
|
||||
"order. \n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start "
|
||||
"repairing only after repair order is confirmed. \n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or "
|
||||
"after repairing done. \n"
|
||||
"* The 'Done' status is set when repairing is completed. \n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Fees Line(s)</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Guarantee Limit:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot Number</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operation Line(s)</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/cancel_repair.py:24
|
||||
#, python-format
|
||||
msgid "Active ID not Found"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmé"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:524
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Grouper par"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the "
|
||||
"different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice Corrected"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Ligne de facturation"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
msgid "Lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:511
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:322
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:350
|
||||
#: code:addons/mrp_repair/mrp_repair.py:379
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:372
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:522
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
msgid "Operation Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Partenaire"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Product Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report.xml,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Recreate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:285
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/cancel_repair.py:32
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Repaired Lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:272
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:207
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to "
|
||||
"the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_to_invoice
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_to_invoice
|
||||
msgid "To Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "VAT:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:207
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:308
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:513
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
"Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "unknown"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Date of the last message posted on the record."
|
||||
#~ msgstr "Date du dernier message posté sur l'enregistrement."
|
||||
|
||||
#~ msgid "Followers"
|
||||
#~ msgstr "Abonnés"
|
||||
|
||||
#~ msgid "If checked new messages require your attention."
|
||||
#~ msgstr "Si coché, les nouveaux messages requierent votre attention. "
|
||||
|
||||
#~ msgid "Last Message Date"
|
||||
#~ msgstr "Date du dernier message"
|
||||
|
||||
#~ msgid "Messages"
|
||||
#~ msgstr "Messages"
|
||||
|
||||
#~ msgid "Messages and communication history"
|
||||
#~ msgstr "Messages et historique des communications"
|
||||
|
||||
#~ msgid "Unread Messages"
|
||||
#~ msgstr "Messages non lus"
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/fr_CA.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulé"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Grouper par"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Facture"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "ligne de facturation"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Partenaire"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Soumission"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Soumission / Commande"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Soumissions"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Taxes"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/gl.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/gl.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Enderezo de envío"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Descrición"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Liña de factura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Facturado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Prezo"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de prezos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidade"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Impostos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Prezo unidade"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Unidade de medida"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Importe Base"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1462
odoo-bringout-oca-ocb-repair/repair/i18n/gu.po
Normal file
1462
odoo-bringout-oca-ocb-repair/repair/i18n/gu.po
Normal file
File diff suppressed because it is too large
Load diff
1495
odoo-bringout-oca-ocb-repair/repair/i18n/he.po
Normal file
1495
odoo-bringout-oca-ocb-repair/repair/i18n/he.po
Normal file
File diff suppressed because it is too large
Load diff
1466
odoo-bringout-oca-ocb-repair/repair/i18n/hi.po
Normal file
1466
odoo-bringout-oca-ocb-repair/repair/i18n/hi.po
Normal file
File diff suppressed because it is too large
Load diff
1506
odoo-bringout-oca-ocb-repair/repair/i18n/hr.po
Normal file
1506
odoo-bringout-oca-ocb-repair/repair/i18n/hr.po
Normal file
File diff suppressed because it is too large
Load diff
1487
odoo-bringout-oca-ocb-repair/repair/i18n/hu.po
Normal file
1487
odoo-bringout-oca-ocb-repair/repair/i18n/hu.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/hy.po
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/hy.po
Normal file
File diff suppressed because it is too large
Load diff
1507
odoo-bringout-oca-ocb-repair/repair/i18n/id.po
Normal file
1507
odoo-bringout-oca-ocb-repair/repair/i18n/id.po
Normal file
File diff suppressed because it is too large
Load diff
1462
odoo-bringout-oca-ocb-repair/repair/i18n/is.po
Normal file
1462
odoo-bringout-oca-ocb-repair/repair/i18n/is.po
Normal file
File diff suppressed because it is too large
Load diff
1532
odoo-bringout-oca-ocb-repair/repair/i18n/it.po
Normal file
1532
odoo-bringout-oca-ocb-repair/repair/i18n/it.po
Normal file
File diff suppressed because it is too large
Load diff
1482
odoo-bringout-oca-ocb-repair/repair/i18n/ja.po
Normal file
1482
odoo-bringout-oca-ocb-repair/repair/i18n/ja.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/ka.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/ka.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "შეწყვეტა"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "გაუქმებულია"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "კომპანია"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "კლიენტი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "აღწერილობა"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "დაჯგუფება"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "ინვოისი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "პარტნიორი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "ფასი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "პროდუქტი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "რაოდენობა"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "სტატუსი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "ძირითადი"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
963
odoo-bringout-oca-ocb-repair/repair/i18n/kab.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/kab.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Sefsex"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Ifsax"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Takebbwanit"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Amsaɣ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Tansa n usiweḍ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Aglam"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Sdukel s"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Tafaturt"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Izirig n tfaturt"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Ittufter"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Amendid"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Ssuma "
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Tabdart n ssuma"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Afaris"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Tanecta"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Asuter n ssuma"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Asuter / Taladna"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Isutar n ssuma"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Addad"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Ad-asemday"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Tiẓeṭṭaḍin "
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Asemday"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "ssuma n yiwen"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Aferdis"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Azal war Taẓeṭṭaṭ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1481
odoo-bringout-oca-ocb-repair/repair/i18n/km.po
Normal file
1481
odoo-bringout-oca-ocb-repair/repair/i18n/km.po
Normal file
File diff suppressed because it is too large
Load diff
1485
odoo-bringout-oca-ocb-repair/repair/i18n/ko.po
Normal file
1485
odoo-bringout-oca-ocb-repair/repair/i18n/ko.po
Normal file
File diff suppressed because it is too large
Load diff
1259
odoo-bringout-oca-ocb-repair/repair/i18n/lb.po
Normal file
1259
odoo-bringout-oca-ocb-repair/repair/i18n/lb.po
Normal file
File diff suppressed because it is too large
Load diff
1459
odoo-bringout-oca-ocb-repair/repair/i18n/lo.po
Normal file
1459
odoo-bringout-oca-ocb-repair/repair/i18n/lo.po
Normal file
File diff suppressed because it is too large
Load diff
1492
odoo-bringout-oca-ocb-repair/repair/i18n/lt.po
Normal file
1492
odoo-bringout-oca-ocb-repair/repair/i18n/lt.po
Normal file
File diff suppressed because it is too large
Load diff
1472
odoo-bringout-oca-ocb-repair/repair/i18n/lv.po
Normal file
1472
odoo-bringout-oca-ocb-repair/repair/i18n/lv.po
Normal file
File diff suppressed because it is too large
Load diff
963
odoo-bringout-oca-ocb-repair/repair/i18n/mk.po
Normal file
963
odoo-bringout-oca-ocb-repair/repair/i18n/mk.po
Normal file
|
|
@ -0,0 +1,963 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Вкупно</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Откажано"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Компанија"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Купувач"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Адреса на испорака"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Групирај по"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Фактура"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Ставка од фактура"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Фактурирано"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Партнер"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Цена"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Ценовник"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Производ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Количина"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Цитат"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Понуда / нарачка"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Понуди"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Вкупно"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Даноци"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Вкупно"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Единечна цена"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Единица мерка"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Даночна основа"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1462
odoo-bringout-oca-ocb-repair/repair/i18n/ml.po
Normal file
1462
odoo-bringout-oca-ocb-repair/repair/i18n/ml.po
Normal file
File diff suppressed because it is too large
Load diff
1494
odoo-bringout-oca-ocb-repair/repair/i18n/mn.po
Normal file
1494
odoo-bringout-oca-ocb-repair/repair/i18n/mn.po
Normal file
File diff suppressed because it is too large
Load diff
1465
odoo-bringout-oca-ocb-repair/repair/i18n/ms.po
Normal file
1465
odoo-bringout-oca-ocb-repair/repair/i18n/ms.po
Normal file
File diff suppressed because it is too large
Load diff
1471
odoo-bringout-oca-ocb-repair/repair/i18n/nb.po
Normal file
1471
odoo-bringout-oca-ocb-repair/repair/i18n/nb.po
Normal file
File diff suppressed because it is too large
Load diff
960
odoo-bringout-oca-ocb-repair/repair/i18n/ne.po
Normal file
960
odoo-bringout-oca-ocb-repair/repair/i18n/ne.po
Normal file
|
|
@ -0,0 +1,960 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1532
odoo-bringout-oca-ocb-repair/repair/i18n/nl.po
Normal file
1532
odoo-bringout-oca-ocb-repair/repair/i18n/nl.po
Normal file
File diff suppressed because it is too large
Load diff
1456
odoo-bringout-oca-ocb-repair/repair/i18n/no.po
Normal file
1456
odoo-bringout-oca-ocb-repair/repair/i18n/no.po
Normal file
File diff suppressed because it is too large
Load diff
1525
odoo-bringout-oca-ocb-repair/repair/i18n/pl.po
Normal file
1525
odoo-bringout-oca-ocb-repair/repair/i18n/pl.po
Normal file
File diff suppressed because it is too large
Load diff
1538
odoo-bringout-oca-ocb-repair/repair/i18n/pt.po
Normal file
1538
odoo-bringout-oca-ocb-repair/repair/i18n/pt.po
Normal file
File diff suppressed because it is too large
Load diff
1512
odoo-bringout-oca-ocb-repair/repair/i18n/pt_BR.po
Normal file
1512
odoo-bringout-oca-ocb-repair/repair/i18n/pt_BR.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/repair.pot
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/repair.pot
Normal file
File diff suppressed because it is too large
Load diff
1532
odoo-bringout-oca-ocb-repair/repair/i18n/ro.po
Normal file
1532
odoo-bringout-oca-ocb-repair/repair/i18n/ro.po
Normal file
File diff suppressed because it is too large
Load diff
1498
odoo-bringout-oca-ocb-repair/repair/i18n/ru.po
Normal file
1498
odoo-bringout-oca-ocb-repair/repair/i18n/ru.po
Normal file
File diff suppressed because it is too large
Load diff
1478
odoo-bringout-oca-ocb-repair/repair/i18n/sk.po
Normal file
1478
odoo-bringout-oca-ocb-repair/repair/i18n/sk.po
Normal file
File diff suppressed because it is too large
Load diff
1480
odoo-bringout-oca-ocb-repair/repair/i18n/sl.po
Normal file
1480
odoo-bringout-oca-ocb-repair/repair/i18n/sl.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/sq.po
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/sq.po
Normal file
File diff suppressed because it is too large
Load diff
1479
odoo-bringout-oca-ocb-repair/repair/i18n/sr.po
Normal file
1479
odoo-bringout-oca-ocb-repair/repair/i18n/sr.po
Normal file
File diff suppressed because it is too large
Load diff
981
odoo-bringout-oca-ocb-repair/repair/i18n/sr@latin.po
Normal file
981
odoo-bringout-oca-ocb-repair/repair/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,981 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@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:27+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:27+0000\n"
|
||||
"Last-Translator: Ljubisa Jovev <ljubisa.jovev@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: mrp_repair
|
||||
#: model:mail.template,report_name:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${(object.name or '').replace('/','_')}"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,subject:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid "${object.partner_id.name} Repair Orders (Ref ${object.name or 'n/a' })"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr "(<i>Ukloni</i>)"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr "(ažuriraj)"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
"* The 'Draft' status is used when a user is encoding a new and unconfirmed repair order.\n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair order.\n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start repairing only after repair order is confirmed.\n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or after repairing done.\n"
|
||||
"* The 'Done' status is set when repairing is completed.\n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:mail.template,body_html:mrp_repair.mail_template_mrp_repair_quotation
|
||||
msgid ""
|
||||
"<?xml version=\"1.0\"?>\n"
|
||||
"<data><p>Dear ${object.partner_id.name}</p>\n"
|
||||
" <p>\n"
|
||||
" Here is your repair order ${doc_name} <strong>${object.name}</strong>\n"
|
||||
" % if object.origin:\n"
|
||||
" (with reference: ${object.origin} )\n"
|
||||
" % endif\n"
|
||||
" % if object.invoice_method != 'none':\n"
|
||||
" amounting in <strong>${object.amount_total} ${object.pricelist_id.currency_id.name}.</strong>\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
" <p>You can reply to this email if you have any questions.</p>\n"
|
||||
" <p>Thank you,</p>\n"
|
||||
" </data>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr "<i>(Dodaj)</i>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot/Serial Number:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operations</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Parts</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr "<strong>Datum štampanja:</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr "<strong>Proizvod za popravku:</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr "<strong>Ukupno pre poreza</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Ukupno</strong>"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Warranty:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr "Dodaj interne beleške..."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr "Dodaj beleške ponude"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr "Posle popravke"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr "Pre popravke"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:237
|
||||
#, python-format
|
||||
msgid "Can only confirm draft repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr "Otkaži popravak"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr "Otkaži nalog za popravak"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Poništeno"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:249
|
||||
#, python-format
|
||||
msgid "Cannot cancel completed repairs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr "Izaberite partnera kome će nalog biti fakturisan i isporučen."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr "Kliknite ovde za kreiranje novog naloga za popravku."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "Preduzeće"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr "Potvrdi popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr "Potvrđeno"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:600
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:658
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
"Nije pronađen cenovnik za taj proizvod i količinu.\n"
|
||||
"Morate promeniti ili proizvod ili količinu ili cenovnik."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr "Kreiraj račun"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr "Napravi fakture"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr "Trenutna lokacija"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Kupac"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "Default Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr "Adresa dostave"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr "Lokacija isporuke"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr "Lokacija isporuke"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr "Želite li zaista kreirati fakturu(e)?"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr "Završeno"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Nacrt"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr "Završi popravak"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr "Dodatni podaci"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr "Naknade"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Future Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr "Grupiši po"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr "Grupiši po adresi računa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr "Garancijski limit mesec"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr "Garancijski limit po mesecima"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr "Istorija"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
"U nalogu za popravu se mogu navesti komponente koje se skidaju,\n"
|
||||
" dodaju i zamenjuju kao i vreme provedeno na izvođenju odgovarajućih\n"
|
||||
" operacija."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:215
|
||||
#, python-format
|
||||
msgid "Insufficient Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr "Interne beleške"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr "Magacinski prenos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice"
|
||||
msgstr "Faktura"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr "Izuzetak fakture"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Stavka računa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr "Metoda računa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr "Adresa za račun"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr "Adresa za račun i dostavu"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:389
|
||||
#, python-format
|
||||
msgid "Invoice created"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr "Fakturisano"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr "Adresa za račun"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Late Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Lot/Serial"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr "Kreiraj račun"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr "Temeljnica"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr "Prenos kreiran od strane naloga za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "My Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr "Nema računa"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:591
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:649
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr "Nema cenovnika!"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:312
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr "Za partnera \"%s\" nije definisan konto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:338
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:366
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr "Za proizvod \"%s\" nije definisan konto"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:359
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr "Nema definisanog proizvoda na troškovima!"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:598
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:656
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr "Nije pronađen važeći cenovnik!"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr "Zabilješke"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr "Operacije"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Parts"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "Cijena"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cjenovnik"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr "Cenovnik označenog partnera"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Print Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr "Količina proizvoda"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "JM proizvoda"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr "Proizvodi za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr "Popravljeni proizvodi svi pripadaju ovom lotu"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "Količina"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr "Ponuda"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr "Ponuda / Nalog"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr "Beleške ponude"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr "Ponude"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr "Spremno za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr "Spremno za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr "Ukloni"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_move_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_stock_warn_insufficient_qty_repair_repair_id
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr "Stavka troška popravka"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr "Stavka popravka"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr "Nalog za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr "Nalog za popravku #:"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr "Nalog za popravku br."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr "Nalozi za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr "Ponuda za popravku #:"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr "Popravka br."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:203
|
||||
#, python-format
|
||||
msgid "Repair must be canceled in order to reset it to draft."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:408
|
||||
#, python-format
|
||||
msgid "Repair must be confirmed before starting reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:436
|
||||
#, python-format
|
||||
msgid "Repair must be repaired in order to make the product moves."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:419
|
||||
#, python-format
|
||||
msgid "Repair must be under repair in order to end reparation."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:251
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr "Nalog za popravku je već fakturisan."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/mrp_repair_cancel.py:20
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr "Nalog za popravku nije fakturisan"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr "Popravljeno"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr "Popravke"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr "Nalozi za popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
"Odabirom 'Pre popravke' ili 'Posle popravke' će vam omogućiti kreiranje "
|
||||
"fakture pre odnosno posle popravke. 'Bez fakture' označava da se za ovaj "
|
||||
"nalog ne pravi faktura."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Send Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:540
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr "Serijski broj je neophodan za liniju operacije kod proizvoda '%s'"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "Postavi na nacrt"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Show all records which has next action date is before today"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr "Izvorna lokacija"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr "Pokreni popravku"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Skladišni prenosi"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr "Međuzbir"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr "Porez"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "Porezi"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
"Jedinica mere proizvoda koju ste odabrali je u drugačijoj kategoriji od "
|
||||
"jedinice mere proizvoda na formi proizvoda"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr "Naziv naloga za popravku mora biti jedinstven!"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
"Nalog za popravku koristi datum garancije na serijskom broju kako\n"
|
||||
" bi se utvrdilo da li će popravka biti fakturisana donosiocu ili ne."
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
"Ova operacija će otkazati proces popravke, ali neće otkazati pripadajući "
|
||||
"račun. Nastaviti?"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr "Za fakturisanje"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Today Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr "Ukupan iznos"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_tracking
|
||||
msgid "Tracking"
|
||||
msgstr "Praćenje"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr "U popravci"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr "Jed. cena"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr "Jedinica mere"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr "Iznos bez poreza"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr "Iznos bez poreza"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:175
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr "Datum isteka garancije"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr "Da"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:300
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
"Morate odabrati adresu za slanje fakture partneru na obrascu za popravke!"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:593
|
||||
#: code:addons/mrp_repair/models/mrp_repair.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
" Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_traceability_report
|
||||
msgid "stock.traceability.report"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_stock_warn_insufficient_qty_repair
|
||||
msgid "stock.warn.insufficient.qty.repair"
|
||||
msgstr ""
|
||||
1491
odoo-bringout-oca-ocb-repair/repair/i18n/sv.po
Normal file
1491
odoo-bringout-oca-ocb-repair/repair/i18n/sv.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/sw.po
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/sw.po
Normal file
File diff suppressed because it is too large
Load diff
1452
odoo-bringout-oca-ocb-repair/repair/i18n/ta.po
Normal file
1452
odoo-bringout-oca-ocb-repair/repair/i18n/ta.po
Normal file
File diff suppressed because it is too large
Load diff
858
odoo-bringout-oca-ocb-repair/repair/i18n/te.po
Normal file
858
odoo-bringout-oca-ocb-repair/repair/i18n/te.po
Normal file
|
|
@ -0,0 +1,858 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_repair
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-06-08 07:10+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Telugu (http://www.transifex.com/odoo/odoo-9/language/te/)\n"
|
||||
"Language: te\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: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_state
|
||||
msgid ""
|
||||
" * The 'Draft' status is used when a user is encoding a new and unconfirmed "
|
||||
"repair order. \n"
|
||||
"* The 'Confirmed' status is used when a user confirms the repair "
|
||||
"order. \n"
|
||||
"* The 'Ready to Repair' status is used to start to repairing, user can start "
|
||||
"repairing only after repair order is confirmed. \n"
|
||||
"* The 'To be Invoiced' status is used to generate the invoice before or "
|
||||
"after repairing done. \n"
|
||||
"* The 'Done' status is set when repairing is completed. \n"
|
||||
"* The 'Cancelled' status is used when user cancel repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "(<i>Remove</i>)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "(update)"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<i>(Add)</i>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Fees Line(s)</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Guarantee Limit:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Lot Number</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Operation Line(s)</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Printing Date:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Product to Repair:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#, fuzzy
|
||||
msgid "<strong>Shipping address :</strong>"
|
||||
msgstr "Moththamu"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total Without Taxes</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "Moththamu"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/cancel_repair.py:24
|
||||
#, python-format
|
||||
msgid "Active ID not Found"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Add"
|
||||
msgstr "Koodinchu leda Jodinchu"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add internal notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Add quotation notes..."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "After Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "Before Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_cancel
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Cancel Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Cancel Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_partner_id
|
||||
msgid "Choose partner for whom the order will be invoiced and delivered."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid "Click to create a reparation order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_company_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Company"
|
||||
msgstr "కంపెనీ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Confirm Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
#: selection:mrp.repair,state:0 selection:mrp.repair.line,state:0
|
||||
msgid "Confirmed"
|
||||
msgstr "ధ్రువీకరించబడిన"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:524
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Couldn't find a pricelist line matching this product and quantity.\n"
|
||||
"You have to change either the product, the quantity or the pricelist."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.act_mrp_repair_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Create invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_create_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_id
|
||||
msgid "Current Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_address_id
|
||||
msgid "Delivery Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_location_dest_id
|
||||
msgid "Delivery Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_name
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Description"
|
||||
msgstr "వివరణ"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_dest_id
|
||||
msgid "Dest. Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_display_name
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_make_invoice
|
||||
msgid "Do you really want to create the invoice(s)?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Done"
|
||||
msgstr "పూర్తయ్యింది"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "End Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Extra Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fees_lines
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_group
|
||||
msgid "Group by partner invoice address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Guarantee limit by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"In a repair order, you can detail the components you remove,\n"
|
||||
" add or replace and record the time you spent on the "
|
||||
"different\n"
|
||||
" operations."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_internal_notes
|
||||
msgid "Internal Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_move_id
|
||||
msgid "Inventory Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_id
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoice Corrected"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Invoice Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoice_line_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoice_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid "Invoice Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Invoice and shipping address:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_invoiced
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_invoiced
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_invoice_id
|
||||
msgid "Invoicing Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line___last_update
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_uid
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_cancel_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_make_invoice_write_date
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_lot_id
|
||||
msgid "Lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_make_invoice
|
||||
msgid "Make Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_move_id
|
||||
msgid "Move created by the repair order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,invoice_method:0
|
||||
msgid "No Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:511
|
||||
#, python-format
|
||||
msgid "No Pricelist!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:322
|
||||
#, python-format
|
||||
msgid "No account defined for partner \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:350
|
||||
#: code:addons/mrp_repair/mrp_repair.py:379
|
||||
#, python-format
|
||||
msgid "No account defined for product \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:372
|
||||
#, python-format
|
||||
msgid "No product defined on Fees!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:522
|
||||
#, python-format
|
||||
msgid "No valid pricelist line found !"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Notes"
|
||||
msgstr "గమనికలు"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_operations
|
||||
msgid "Operation Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Price"
|
||||
msgstr "ధర"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_pricelist_id
|
||||
msgid "Pricelist of the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Product Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_qty
|
||||
msgid "Product Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_product_id
|
||||
msgid "Product to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Products repaired are all belonging to this lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_product_uom_qty
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_product_uom_qty
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Quantity"
|
||||
msgstr "పరిమాణం"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.report.xml,name:mrp_repair.action_report_mrp_repair_order
|
||||
msgid "Quotation / Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_quotation_notes
|
||||
msgid "Quotation Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Quotations"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Ready To Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Ready to Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Recreate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair.line,type:0
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_fee
|
||||
msgid "Repair Fees Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair_line
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model,name:mrp_repair.model_mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Repair Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Order #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_repair_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_repair_id
|
||||
msgid "Repair Order Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Repair Quotation #:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_name
|
||||
msgid "Repair Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:285
|
||||
#, python-format
|
||||
msgid "Repair order is already invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/wizard/cancel_repair.py:32
|
||||
#, python-format
|
||||
msgid "Repair order is not invoiced."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_repaired
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Repaired"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_lot_id
|
||||
msgid "Repaired Lot"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.ui.menu,name:mrp_repair.menu_repair_order
|
||||
msgid "Repairs"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_tree
|
||||
msgid "Repairs order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Search Repair Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_invoice_method
|
||||
msgid ""
|
||||
"Selecting 'Before Repair' or 'After Repair' will allow you to generate "
|
||||
"invoice before or after the repair is done respectively. 'No invoice' means "
|
||||
"you don't want to generate invoice for this repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:272
|
||||
#, python-format
|
||||
msgid "Serial number is required for operation line with product '%s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_location_id
|
||||
msgid "Source Location"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Start Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_state
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_state
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form_filter
|
||||
msgid "Status"
|
||||
msgstr "స్థితి"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_subtotal
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_subtotal
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Tax"
|
||||
msgstr "పన్ను"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_tax
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_tax_id
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_tax_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Taxes"
|
||||
msgstr "పన్నులు"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:207
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Product Unit of Measure you chose has a different category than in the "
|
||||
"product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: sql_constraint:mrp.repair:0
|
||||
msgid "The name of the Repair Order must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.actions.act_window,help:mrp_repair.action_repair_order_tree
|
||||
msgid ""
|
||||
"The repair order uses the warranty date on the Serial Number in\n"
|
||||
" order to know if whether the repair should be invoiced to "
|
||||
"the\n"
|
||||
" customer or not."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,help:mrp_repair.field_mrp_repair_line_state
|
||||
msgid ""
|
||||
"The status of a repair line is set automatically to the one of the linked "
|
||||
"repair order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid ""
|
||||
"This operation will cancel the Repair process, but will not cancel it's "
|
||||
"Invoice. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_to_invoice
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_to_invoice
|
||||
msgid "To Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "To be Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_total
|
||||
msgid "Total"
|
||||
msgstr "మొత్తం"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_type
|
||||
msgid "Type"
|
||||
msgstr "రకం"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: selection:mrp.repair,state:0
|
||||
msgid "Under Repair"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_fee_price_unit
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_line_price_unit
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_amount_untaxed
|
||||
msgid "Untaxed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_repair_order_form
|
||||
msgid "Untaxed amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.report_mrprepairorder
|
||||
msgid "VAT:"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:207
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "హెచ్చరిక"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_guarantee_limit
|
||||
msgid "Warranty Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_repair.view_cancel_repair
|
||||
msgid "Yes"
|
||||
msgstr "అవును"
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:308
|
||||
#, python-format
|
||||
msgid "You have to select a Partner Invoice Address in the repair form!"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: code:addons/mrp_repair/mrp_repair.py:513
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You have to select a pricelist in the Repair form !\n"
|
||||
"Please set one before choosing a product."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_repair
|
||||
#: model:ir.model.fields,field_description:mrp_repair.field_mrp_repair_default_address_id
|
||||
msgid "unknown"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Action Needed"
|
||||
#~ msgstr "Charya Avasaram"
|
||||
1480
odoo-bringout-oca-ocb-repair/repair/i18n/th.po
Normal file
1480
odoo-bringout-oca-ocb-repair/repair/i18n/th.po
Normal file
File diff suppressed because it is too large
Load diff
1520
odoo-bringout-oca-ocb-repair/repair/i18n/tr.po
Normal file
1520
odoo-bringout-oca-ocb-repair/repair/i18n/tr.po
Normal file
File diff suppressed because it is too large
Load diff
1528
odoo-bringout-oca-ocb-repair/repair/i18n/uk.po
Normal file
1528
odoo-bringout-oca-ocb-repair/repair/i18n/uk.po
Normal file
File diff suppressed because it is too large
Load diff
1499
odoo-bringout-oca-ocb-repair/repair/i18n/vi.po
Normal file
1499
odoo-bringout-oca-ocb-repair/repair/i18n/vi.po
Normal file
File diff suppressed because it is too large
Load diff
1503
odoo-bringout-oca-ocb-repair/repair/i18n/zh_CN.po
Normal file
1503
odoo-bringout-oca-ocb-repair/repair/i18n/zh_CN.po
Normal file
File diff suppressed because it is too large
Load diff
1475
odoo-bringout-oca-ocb-repair/repair/i18n/zh_TW.po
Normal file
1475
odoo-bringout-oca-ocb-repair/repair/i18n/zh_TW.po
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue