mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
Merge pull request #198 from Eficent/9.0-mig-quality_control
[9.0][MIG] quality_control
This commit is contained in:
91
quality_control/README.rst
Normal file
91
quality_control/README.rst
Normal file
@@ -0,0 +1,91 @@
|
||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
|
||||
===============
|
||||
Quality control
|
||||
===============
|
||||
|
||||
This module provides a generic infrastructure for quality tests. The idea is
|
||||
that it can be later reused for doing quality inspections on production lots
|
||||
or any other area of the company.
|
||||
|
||||
Definitions
|
||||
-----------
|
||||
|
||||
* Question: The thing to be checked. We have two types of questions:
|
||||
|
||||
* Qualitative: The result is a description, color, yes, no...
|
||||
|
||||
* Quantitative: The result must be within a range.
|
||||
|
||||
* Possible values: The values chosen in qualitative questions.
|
||||
|
||||
* Test: The set of questions to be used in inspections.
|
||||
|
||||
* Once these values are set, we define the inspection.
|
||||
|
||||
We have a *generic* test that can be applied to any model: shipments,
|
||||
invoices or product, or a *test related*, making it specific to a particular
|
||||
product and that eg apply whenever food is sold or when creating a batch.
|
||||
|
||||
Once these parameters are set, we can just pass the test. We create a
|
||||
new inspection, selecting a relationship with the model (sale, stock move...),
|
||||
and pressing "Select test" button to choose the test to pass. Then, you must
|
||||
fill the lines depending on the chosen test.
|
||||
|
||||
The complete inspection workflow is:
|
||||
|
||||
Draft -> Confirmed -> Success
|
||||
|
|
||||
| -> Failure (Pending approval) -> Approved
|
||||
|
||||
Based on the nan_quality_control_* modules from NaN·tic.
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/129/9.0
|
||||
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* Make translatable the trigger name.
|
||||
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here <https://github.com/OCA/manufacture/issues/new?body=module:%20quality_control%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Contributors
|
||||
------------
|
||||
* Pedro M. Baeza <pedro.baeza@serviciobaeza.com>
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* Ana Juaristi <anajuaristi@avanzosc.es>
|
||||
* Lois Rilo <lois.rilo@eficent.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
9
quality_control/__init__.py
Normal file
9
quality_control/__init__.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
39
quality_control/__openerp__.py
Normal file
39
quality_control/__openerp__.py
Normal file
@@ -0,0 +1,39 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Quality control",
|
||||
"version": "9.0.1.3.0",
|
||||
"category": "Quality control",
|
||||
"license": "AGPL-3",
|
||||
"author": "OdooMRP team, "
|
||||
"AvanzOSC, "
|
||||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
||||
"Eficent, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"website": "http://www.odoomrp.com",
|
||||
"depends": [
|
||||
"product",
|
||||
],
|
||||
"data": [
|
||||
"data/quality_control_data.xml",
|
||||
"security/quality_control_security.xml",
|
||||
"security/ir.model.access.csv",
|
||||
"wizard/qc_test_wizard_view.xml",
|
||||
"views/qc_menus.xml",
|
||||
"views/qc_inspection_view.xml",
|
||||
"views/qc_test_category_view.xml",
|
||||
"views/qc_test_view.xml",
|
||||
"views/qc_trigger_view.xml",
|
||||
"views/product_template_view.xml",
|
||||
"views/product_category_view.xml",
|
||||
],
|
||||
"demo": [
|
||||
"demo/quality_control_demo.xml",
|
||||
],
|
||||
"installable": True,
|
||||
}
|
||||
26
quality_control/data/quality_control_data.xml
Normal file
26
quality_control/data/quality_control_data.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="qc_test_template_category_generic" model="qc.test.category">
|
||||
<field name="name">Generic</field>
|
||||
</record>
|
||||
|
||||
<record id="qc_test_template_category_referenced" model="qc.test.category">
|
||||
<field name="name">Referenced</field>
|
||||
</record>
|
||||
|
||||
<record forcecreate="True" id="decimal_quality_control" model="decimal.precision">
|
||||
<field name="name">Quality Control</field>
|
||||
<field name="digits">5</field>
|
||||
</record>
|
||||
</data>
|
||||
|
||||
<data>
|
||||
<record id="seq_qc_inspection" model="ir.sequence">
|
||||
<field name="name">Quality inspection</field>
|
||||
<field name="code">qc.inspection</field>
|
||||
<field name="prefix">QC-</field>
|
||||
<field name="padding">6</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
39
quality_control/demo/quality_control_demo.xml
Normal file
39
quality_control/demo/quality_control_demo.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<openerp>
|
||||
<data noupdate="1">
|
||||
<record model="qc.test" id="qc_test_1">
|
||||
<field name="name">Generic Test (demo)</field>
|
||||
<field name="type">generic</field>
|
||||
<field name="active" eval="True" />
|
||||
<field name="category" ref="qc_test_template_category_generic" />
|
||||
</record>
|
||||
|
||||
<record model="qc.test.question" id="qc_test_question_1">
|
||||
<field name="name">Overall quality</field>
|
||||
<field name="test" ref="qc_test_1" />
|
||||
<field name="type">qualitative</field>
|
||||
</record>
|
||||
|
||||
<record model="qc.test.question.value" id="qc_test_question_value_1">
|
||||
<field name="name">Good</field>
|
||||
<field name="ok" eval="True" />
|
||||
<field name="test_line" ref="qc_test_question_1" />
|
||||
</record>
|
||||
|
||||
<record model="qc.test.question.value" id="qc_test_question_value_2">
|
||||
<field name="name">Bad</field>
|
||||
<field name="ok" eval="False" />
|
||||
<field name="test_line" ref="qc_test_question_1" />
|
||||
</record>
|
||||
|
||||
<record model="qc.test.question" id="qc_test_question_2">
|
||||
<field name="name">Size</field>
|
||||
<field name="test" ref="qc_test_1" />
|
||||
<field name="type">quantitative</field>
|
||||
<field name="min_value" eval="1.0" />
|
||||
<field name="max_value" eval="10.0" />
|
||||
<field name="uom_id" ref="product.product_uom_unit" />
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
827
quality_control/i18n/am.po
Normal file
827
quality_control/i18n/am.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-16 09:04+0000\n"
|
||||
"PO-Revision-Date: 2016-11-25 14:57+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-manufacture-8-0/language/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/ar.po
Normal file
827
quality_control/i18n/ar.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "الفئة"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "الشركة"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "التاريخ"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "تاريخ آخر رسالة في هذا السجل."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "مسوّدة"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "المتابعون"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "إذا حددته، ستتطلب الرسائل الجديدة انتباهك"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "تاريخ آخر رسالة"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "الرسائل"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "الرسائل و سجل التواصل"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "مرجع"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "مقترن"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "المسلسل"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "النوع"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "رسائل غير مقروءة"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "أو"
|
||||
827
quality_control/i18n/bg.po
Normal file
827
quality_control/i18n/bg.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-13 09:30+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Активен"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Категория"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Фирма"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Дата"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Дата на последното съобщение, публикувано на записа."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Последователи"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ако е отбелязано, новите съобщения ще изискват внимание."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Дата на последното съобщение"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Съобщения"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "История на събщенията и комуникациите"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Последователност"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Вид"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Непрочетени съобщения"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "или"
|
||||
827
quality_control/i18n/bs.po
Normal file
827
quality_control/i18n/bs.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 11:09+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bs\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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Kompanija"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum posljednje poruke ostavljene na unos."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "U pripremi"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Pratioci"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ako je označeno nove poruke će zahtjevati vašu pažnju."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Datum zadnje poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Poruke i istorija komunikacije"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referenca"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Vrsta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Nepročitane poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ili"
|
||||
827
quality_control/i18n/ca.po
Normal file
827
quality_control/i18n/ca.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Cancel·lat"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Veure el nom"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidors"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Darrera modificació el"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Darrera Actualització el"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Missatges"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del producte"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Quantitat"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Seqüència"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipus"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/ca_ES.po
Normal file
827
quality_control/i18n/ca_ES.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:41+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ca_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Companyia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/cs.po
Normal file
827
quality_control/i18n/cs.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/oca/OCA-manufacture-8-0/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Společnost"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum posledního vzkazu u tohoto záznamu."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Návrh"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Sledující"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Pokud je zaškrtnuto, nové zprávy vyžadují vaši pozornost."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Datum posledního vzkazu"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Zprávy"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Zprávy a historie komunikace"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Odkaz"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Číselná řada"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Druh"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Nepřečtené zprávy"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "nebo"
|
||||
827
quality_control/i18n/da.po
Normal file
827
quality_control/i18n/da.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/oca/OCA-manufacture-8-0/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Virksomhed"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Dato for sidste besked på denne post."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Udkast"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Followers"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Hvis afmærket, kræver nye beskeder din attention"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Sidste dato for besked"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Beskeder"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Besked- og kommunikations historik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Rækkefølge"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Ulæste beskeder"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "eller"
|
||||
831
quality_control/i18n/de.po
Normal file
831
quality_control/i18n/de.po
Normal file
@@ -0,0 +1,831 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Hotellook, 2014
|
||||
# oihane <oihanecruce@gmail.com>, 2015
|
||||
# oihane <oihanecruce@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016-2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:43+0000\n"
|
||||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\n"
|
||||
"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-8-0/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr "Abstrakte Position zur Festlegung von Auslösern"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Annehmen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Antworten"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr "Auto-angelegt"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr "Schlecht"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Stornieren"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Storniert"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr "Unterkategorien"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr "Umrechnung von Maßeinheiten kann nur innerhalb der gleichen Kategorie erfolgen. Die Umrechnung erfolgt auf Basisi von Faktoren."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr "Richtig"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr "Richtige Antwort?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Angelegt durch"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Angelegt am"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum der letzten Meldung zu diesem Datensatz."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr "Fehler! Sie dürfen keine rekursiven Kategorien anlegen."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr "Externe Vermerke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Follower"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr "Vollständige Bezeichnung"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr "Allg. Test (demo)"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr "Gut"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Gruppiere"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "Beinhaltet die Meldungshistorie (Anzahl Meldungen, ...). Diese Übersicht liegt in HTML vor, um in Kanban-Sichten eingesetzt zu werden."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr "Wenn eine Inspektion auto-angelegt wurde, kann sie weder storniert noch entfern werden."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Wenn angewählt, erfordern neue Meldungen Ihre Aufmerksamkeit."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr "Wenn ausgefüllt, wird der Test nur bei einem Vorgang zu angegebenem Partner angelegt. Wenn leer, wird der Test unbedingt erzeugt."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr "Falsch"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr "Inspektion"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr "Inspektionspositionen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr "Inspektionsnummer"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Inspektionen"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr "Interne Vermerke"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Bestand"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "Ist ein Follower"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Letztes Meldungsdatum"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert durch"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr "Verwalter"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr "Markiere als zu erledigen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr "Max"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr "Größter zulässiger Wert bei quantitativen Fragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Meldungen"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Meldungen und Kommunikationsverlauf"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr "Min"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr "Kleinster zulässiger Wert bei quantitativen Fragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr "Kleinster Wert darf nicht größer als größter Wert sein"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Bezeichnung"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Hinweise"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr "Gesamt-Qualität"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr "Übergeordnete Kategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr "Mögliche Werte bei qualitativen Fragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr "Vorbelegung mit richtigen Werten"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Produktkategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Produktvorlage"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr "Produkt auf die sich die Inspektion bezieht"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr "Produktkategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr "Produktvorlage"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr "Qualitativ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr "Qualitativer Wert"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr "Qualitative Werte"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr "Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspektion der Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Inspektionsposition"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr "Frage der Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr "Test der Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr "Auslöser der Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr "Auslöser der Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr "Qualität unzureichend"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr "Qualität erfolgreich"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr "Qualitativ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr "Qualitativer Wert"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Quantität"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr "Frage"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr "Art der Frage"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr "Fragewert"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr "Fragen"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr "Fertig"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referenz"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr "Vergleichobjekt"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr "Referenziert"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Verwandt"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Verantwortlich"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr "Suche in Inspektionen"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr "Suche in Inspektionspositionen"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr "Wähle Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr "Wählbar nach Partner"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Folge"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr "Setze Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Größe"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Erfolg"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr "Erfolg?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Zusammenfassung"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr "ME im Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr "Testkategorien"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr "Testkategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr "Testfrage"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr "Tests"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr "Es ist kein Wer mit OK gekennzeichnet. Mind. einer muß gewählt sein."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr "Dieses Feld erlaubt das Verbergen einer Kategorie ohne diese zu entfernen."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr "Dieses Feld wird aktiviert, wenn alle Tests erfolgreich waren."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr "Dieses Feld ist technischer Art und erlaubt das Filtern nach Partnern bei Auslösern"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr "Auslöser"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Art"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr "Kategorie der Maßeinheit "
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Ungelesene Meldungen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "ME"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr "ME für kleinste und größte Werte in quantitativen Fragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr "ME des Prüfwertes bei quantitativen Fragen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr "ME"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr "Zulässige Werte"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr "Ergebniswert bei qualitativen Fragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr "Ergebniswert bei quantitativen Fragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr "Erwarte Freigabe durch Vorgesetzten"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr "Wenn dieses Feld aktiviert ist, wird die Frage als korrekt angesehen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr "Sie dürfen eine auto-angelegte Inspektion nicht löschen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr "Sie dürfen eine Inspektion, die nicht im Status Entwurf ist, nicht löschen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr "Sie müssen zunächst den durchzuführenden Test festlegen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr "Sie müssen eine Maßeinheit für quantitaiven Fragen festlegen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr "Sie müssen eine Antwort für alle qualitativen Fragen vorgeben."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "oder"
|
||||
827
quality_control/i18n/el_GR.po
Normal file
827
quality_control/i18n/el_GR.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Άκυρο"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Εταιρεία"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Ημερομηνία"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Προϊόν"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/en_AU.po
Normal file
827
quality_control/i18n/en_AU.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/en_AU/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_AU\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/en_GB.po
Normal file
827
quality_control/i18n/en_GB.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Category"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Company"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Date of the last message posted on the record."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Draft"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Followers"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "If checked new messages require your attention."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Last Message Date"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Messages"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Messages and communication history"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sequence"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Unread Messages"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "or"
|
||||
829
quality_control/i18n/es.po
Normal file
829
quality_control/i18n/es.po
Normal file
@@ -0,0 +1,829 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# oihane <oihanecruce@gmail.com>, 2015-2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-11 01:38+0000\n"
|
||||
"PO-Revision-Date: 2017-02-10 21:40+0000\n"
|
||||
"Last-Translator: Pedro M. Baeza <pedro.baeza@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-8-0/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr "Línea abstracta para definir disparadores"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Respuestas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Aprobar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr "Auto-generada"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr "Mal"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr "Categorías hijas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr "La conversión entre las unidades de medidas sólo pueden ocurrir si pertenecen a la misma categoría. La conversión se basará en los ratios establecidos."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr "Correcta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr "¿Respuesta correcta?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del último mensaje publicado en el registro"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr "Error. No puede crear categorías recursivas."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr "Notas externas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr "Nombre completo"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr "Genérico"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr "Test genérico (demo)"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr "Bien"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Agrupar por..."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está directamente en formato html para ser insertado en vistas kanban."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr "Si una inspección ha sido auto-generada, no puede ser cancelada ni borrada."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si está marcado, hay nuevos mensajes que requieren su atención."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr "Si está relleno, el test solo sera creado cuando se ejecute la acción para uno de las empresas especificadas. Si está vacío, el test se creará siempre."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr "Incorrecta"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr "Inspección"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr "Líneas de inspección"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr "Nº de inspección"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Inspecciones"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr "Notas internas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "Es un seguidor"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha del último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr "Responsable"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr "Marcar para hacer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr "Máximo"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr "El valor máximo valido para una pregunta cuantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Mensajes e historial de comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr "Mínimo"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr "El valor mínimo valido para una pregunta cuantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr "El valor mínimo no puede ser más alto que el valor máximo."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr "Calidad en general"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr "Categoría padre"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr "Valores posibles para una pregunta cualitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr "Pre-rellenar con valores correctos"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr "Producto asociado con la inspección"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr "Cualitativa"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr "Valor cualitativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr "Valores cualitativos"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr "Control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspección del control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Línea de inspección del control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr "Pregunta del control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr "Test del control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr "Disparador del control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr "Disparadores del control de calidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr "Calidad fallida"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr "Calidad satisfactoria"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr "Cuantitativa"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr "Valor cuantitativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr "Pregunta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr "Tipo de pregunta"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr "Valor de la pregunta"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr "Preguntas"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr "Lista"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr "Objeto referencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr "Referenciado"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Relativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Responsable"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr "Buscar inspección"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr "Buscar línea de inspección"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr "Seleccionar test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr "Seleccionable por empresa"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr "Establecer test"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Correcta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr "Correcta?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Resumen"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr "UdM test"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr "Categorías de test"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr "Categoría de test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr "Pregunta del test"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr "Tests"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr "No hay un valor marcado como correcto. Tiene que marcar al menos uno."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr "Este campo le permite ocultar la categoría sin eliminarla."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr "Este campo se marcará si todos los test han sido satisfactorios."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr "Este campo técnico es para habilitar el filtro por empresa en los disparadores."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr "Disparador"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr "Categoría de unidad de medida"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes sin leer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "UdM"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr "UdM para los valores mínimo y máximo de una pregunta cuantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr "UdM de un valor de la inspección para una pregunta cuantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr "UdM"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr "Valores válidos"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr "Valor del resultado para una pregunta cualitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr "Valor del resultado para una pregunta cuantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr "Esperando la aprobación del supervisor"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr "Cuando este campo está marcado, la respuesta se considera correcta."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr "No puede eliminar una inspección auto-generada."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr "No puede eliminar una inspección que no se encuentre en estado borrador."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr "Primero debe configurar el test a realizar."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr "Debe proveer una unidad de medida para las preguntas cuantitativas."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr "Debe proveer una respuesta para todas las preguntas cualitativas."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_AR.po
Normal file
827
quality_control/i18n/es_AR.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-13 09:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del último mensaje publicado en el registro."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si esta marcado, los nuevos mensajes requieren su atención."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha de último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Historial de mensajes y comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes No Leídos"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_CL.po
Normal file
827
quality_control/i18n/es_CL.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del último mensaje publicado en el registro."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si está marcado, hay nuevos mensajes que requieren su atención"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha del último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_CO.po
Normal file
827
quality_control/i18n/es_CO.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del último mensaje publicado en el registro."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si está marcado, hay nuevos mensajes que requieren su atención"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha del Último Mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Historial de mensajes y de comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Relacionados"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes sin Leer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_CR.po
Normal file
827
quality_control/i18n/es_CR.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-03-13 12:50+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/es_DO.po
Normal file
827
quality_control/i18n/es_DO.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del último mensaje publicado en el registro."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si está marcado, hay nuevos mensajes que requieren su atención"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha del último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Mensajes e historial de comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes sin leer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_EC.po
Normal file
827
quality_control/i18n/es_EC.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del último mensaje publicado en el registro."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si está marcado, hay nuevos mensajes que requieren su atención"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha del último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Mensajes e historial de comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Ref."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Relacionados"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes sin leer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_ES.po
Normal file
827
quality_control/i18n/es_ES.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:42+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/es_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_MX.po
Normal file
827
quality_control/i18n/es_MX.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha de último trabajo realizado en esta cuenta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si se marca, los nuevos mensajes requieren su atención"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha de último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizacion por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización realizada"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Mensajes e historial de comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria del producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del producto"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes sin leer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ó"
|
||||
827
quality_control/i18n/es_PE.po
Normal file
827
quality_control/i18n/es_PE.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-16 09:04+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:50+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Fecha del ultimo mensaje actualizado en el registro."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si está marcado nuevos mensajes requieren su atención."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha del último mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Historial de mensajes y comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes no leidos"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/es_PY.po
Normal file
827
quality_control/i18n/es_PY.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:21+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si marcado la nueva mensaje requiere atencion"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Fecha de la ultima mensaje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Mensajes y historial de comunicación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensajes sin leer"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/es_VE.po
Normal file
827
quality_control/i18n/es_VE.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensajes"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/et.po
Normal file
827
quality_control/i18n/et.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 11:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Loobu"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategooria"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Ettevõte"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Kuupäev"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Mustand"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Jälgijad"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Kui kontrollitud, siis uued sõnumid nõuavad Su tähelepanu."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Viimase sõnumi kuupäev"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Sõnumid"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Sõnumite ja kommunikatsiooni ajalugu"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Viide"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Jada"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tüüp"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Lugemata sõnumid"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "või"
|
||||
827
quality_control/i18n/eu.po
Normal file
827
quality_control/i18n/eu.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-23 09:33+0000\n"
|
||||
"PO-Revision-Date: 2017-02-23 15:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategoria"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Enpresa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Date of the last message posted on the record."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Followers"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "If checked new messages require your attention."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Last Message Date"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mezuak"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Messages and communication history"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Izena"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Kideak"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produktua"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sekuentzia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Mota"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Irakurri gabeko mezuak"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "or"
|
||||
827
quality_control/i18n/fa.po
Normal file
827
quality_control/i18n/fa.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "دستهبندی"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "تاریخ آخرین پیغام پست شده از این رکورد"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "دنبالکنندگان"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "اگر این گزینه را انتخاب کنید، پیامهای جدید به توجه شما نیاز خواهند داشت"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "تاریخ آخرین پیام"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "پیامها"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "پیامها و تاریخچه ارتباط"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "دنباله"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "نوع"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "پیام های ناخوانده"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "یا"
|
||||
827
quality_control/i18n/fi.po
Normal file
827
quality_control/i18n/fi.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-02 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-11 14:14+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-manufacture-8-0/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Hyväksy"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Yritys"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Päivämäärä"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Viimeisimmän lähetetyn viestin päiväys."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Luonnos"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seuraajat"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Jos valittuna, uudet viestit vaatii toimenpiteitä."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Viimeisimmän viestin päiväys"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Viestejä"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Huomautukset"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Kumppanit"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Tuotteen malli"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Määrä"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenssi"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Tila"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tyyppi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Lukemattomia viestejä"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "tai"
|
||||
831
quality_control/i18n/fr.po
Normal file
831
quality_control/i18n/fr.po
Normal file
@@ -0,0 +1,831 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# oihane <oihanecruce@gmail.com>, 2016
|
||||
# oihane <oihanecruce@gmail.com>, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 23:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-manufacture-8-0/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Catégorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Date du dernier message publié sur cet enregistrement"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Abonnés"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Grouper par ..."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est au format HTML pour permettre son utilisation dans la vue kanban."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "Id."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Si coché, les nouveaux messages seront portés à votre attention."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Inspections"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Inventaire"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "Est un abonné"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Date du dernier message"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr "Responsable"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Messages"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Historique des messages et communications"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Commentaires"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Partenaires"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Article"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Catégorie d'articles"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modèle d'article"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspection de contrôle qualité"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Ligne d'inspection de contrôle de la qualité"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr "Déclencheur de contrôle qualité"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Quantité"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Référence"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Responsable"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sequence"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Taille"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Résumé"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Messages non-lus"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "UdM"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
827
quality_control/i18n/fr_CA.po
Normal file
827
quality_control/i18n/fr_CA.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-21 19:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/fr_CH.po
Normal file
827
quality_control/i18n/fr_CH.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:42+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/fr_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Catégorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Template de produit"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/fr_FR.po
Normal file
827
quality_control/i18n/fr_FR.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-11 15:36+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/fr_FR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_FR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
829
quality_control/i18n/gl.po
Normal file
829
quality_control/i18n/gl.po
Normal file
@@ -0,0 +1,829 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# César Castro Cruz <ulmroan@gmail.com>, 2016
|
||||
# César Castro Cruz <ulmroan@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: César Castro Cruz <ulmroan@gmail.com>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Respostas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Aprobar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr "Xenerado automáticamente"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr "Mal"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creada por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Agrupar por..."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr "Incorrecto"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Inspeccións"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr "Preguntas"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr "Listo"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Proba"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr "Categorías das probas"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr "Categoría da proba"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr "Probas"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr "Este campo permite ocultar a categoría sen eliminala."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr "Este campo marcarase se todas as probas son correctas."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr "Categoría da unidade de medida"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensaxes sen ler"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr "Valores válidos"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr "Agardando pola aprobación do supervisor"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr "Cando está marcado, a resposta considérase correcta."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr "Non se pode eliminar unha inspección xerada automaticamente."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr "Non se pode eliminar unha inspección que non estea en estado borrador."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr "Débese seleccionar antes a proba a realizar."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr "Débese usar unha unidade de medida para todas as preguntas cuantitativas."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr "Débense contestar todas as preguntas cualitativas."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
827
quality_control/i18n/gl_ES.po
Normal file
827
quality_control/i18n/gl_ES.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-16 09:04+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 16:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/gl_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/he.po
Normal file
827
quality_control/i18n/he.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-manufacture-8-0/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "קטגוריה"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "תאריך הודעה אחרונה שפורסמה ברשומה."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "עוקבים"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "אם מסומן אז הודעה חדשה דורשת התייחסותכם."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "תאריך הודעה אחרונה"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "הודעות"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "היסטוריית הודעות ותקשורת"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "רצף"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "סוג"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "הודעות שלא נקראו"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "או"
|
||||
827
quality_control/i18n/hi.po
Normal file
827
quality_control/i18n/hi.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/oca/OCA-manufacture-8-0/language/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "रद्द"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/hr.po
Normal file
827
quality_control/i18n/hr.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-02 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-11 14:12+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Poduzeće"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdi"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum zadnjeg zapisa"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv "
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Skica"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Pratitelji"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Datum zadnje poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažuriranje"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Poruke i povijest"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Bilješke"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Veza"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Povezano"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Odgovoran/na"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Sažetak"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Nepročitane poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ili"
|
||||
827
quality_control/i18n/hr_HR.po
Normal file
827
quality_control/i18n/hr_HR.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:41+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_HR\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Poduzeće"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/hu.po
Normal file
827
quality_control/i18n/hu.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:42+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Mégsem"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategória"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Vállalat"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Dátum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "A feljegyzésen történt utolsó levelezés dátuma."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Tervezet"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Követők"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Utolsó üzenet dátuma"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítve, által"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Utoljára frissítve "
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Üzenetek"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Üzenetek és kommunikáció történet"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Hivatkozás"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Kapcsolódó"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sorszám"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Típus"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Olvasatlan üzenetek"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "vagy"
|
||||
827
quality_control/i18n/id.po
Normal file
827
quality_control/i18n/id.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-10 13:16+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Batalkan"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Tanggal"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Tanggal pesan terakhir diposting pada catatan."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Pengikut"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Jika dicentang pesan baru membutuhkan perhatian Anda."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Tanggal pesan terakhir"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Diperbaharui oleh"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Pesan"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Pesan dan riwayat komunikasi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Terkait"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Berurutan"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Jenis"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Pesan Belum Dibaca"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "atau"
|
||||
830
quality_control/i18n/it.po
Normal file
830
quality_control/i18n/it.po
Normal file
@@ -0,0 +1,830 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Andrea Cometa <a.cometa@apuliasoftware.it>, 2016
|
||||
# Paolo Valier, 2016
|
||||
# Paolo Valier, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-16 03:46+0000\n"
|
||||
"PO-Revision-Date: 2016-12-23 08:32+0000\n"
|
||||
"Last-Translator: Andrea Cometa <a.cometa@apuliasoftware.it>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Accetta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Risposte"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Approva"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Annullato"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr "Risposta corretta?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Date of the last message posted on the record."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome da visualizzare"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Bozza"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Followers"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "If checked new messages require your attention."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Ispezioni"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr "Note interne"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Inventario"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "È un follower"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Data Ultimo Messaggio"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento da"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Messaggi"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Prodotto "
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria Prodotto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Template prodotto"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr "Controllo qualità"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Ispezione controllo di qualità"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Riga ispezione controllo qualità"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Quantità"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Riferimento"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Dimensione"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Riuscito"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Riepilogo"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Messaggi non letti"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "UdM"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr "Udm"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
827
quality_control/i18n/ja.po
Normal file
827
quality_control/i18n/ja.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:45+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "分類"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "会社"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "日付"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "記録上の最後のメッセージが投稿された日"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "ドラフト"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "フォロワー"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "最終メッセージ日"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "メッセージ"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "メッセージと通信履歴"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "参照"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "付番"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "タイプ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "未読メッセージ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "または"
|
||||
827
quality_control/i18n/ko.po
Normal file
827
quality_control/i18n/ko.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-13 09:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "분류"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "날짜"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "레코드에 게시된 최근 메시지의 날짜."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "팔로워"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "선택하면 새로운 메시지를 주목할 필요가 있습니다."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "최근 메시지 날짜"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "메시지"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "메시지 및 대화 기록"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "관련됨"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "순서"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "유형"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "읽지 않은 메시지"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "또는"
|
||||
827
quality_control/i18n/lo.po
Normal file
827
quality_control/i18n/lo.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 03:24+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lao (http://www.transifex.com/oca/OCA-manufacture-8-0/language/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "ຍົກເລີອກ"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/lt.po
Normal file
827
quality_control/i18n/lt.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Įmonė"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Paskutinė pranešimo publikavimo data šiame įraše."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Juodraštis"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Prenumeratoriai"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Jeigu pažymėta, nauji pranešimai reikalaus jūsų dėmesio."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Paskutinio pranešimo data"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Pranešimai"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Pranešimų ir komunikacijos istorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Pavadinimas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Numeris"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Seka"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Neskaityti pranešimai"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Naudotojas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "arba"
|
||||
827
quality_control/i18n/lt_LT.po
Normal file
827
quality_control/i18n/lt_LT.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-11 15:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/lt_LT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt_LT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/lv.po
Normal file
827
quality_control/i18n/lv.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Uzņēmums"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datums"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Pēdējā ierakstam piesaistītā ziņojuma datums."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Sekotāji"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ja atzīmēts, tad jauni ziņojumi pieprasīs jūsu uzmanību."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Pēdēja ziņojuma datums"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Ziņojumi"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Ziņojumu un komunikācijas vēsture"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nosaukums"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Atsauce"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sērija"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tips"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Neizlasīti ziņojumi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "vai"
|
||||
827
quality_control/i18n/mk.po
Normal file
827
quality_control/i18n/mk.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Категорија"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Компанија"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Датум"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Датум на испраќање на последната порака"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Нацрт"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Пратители"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Доколку е штиклирано, новите пораки го бараат вашето внимание."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Датум на последна порака"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Пораки"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Пораки и историја на комуникација"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Референца"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Поврзано"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Секвенца"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Тип"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Непрочитани Пораки"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Корисник"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "или"
|
||||
827
quality_control/i18n/mn.po
Normal file
827
quality_control/i18n/mn.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Цуцлах"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Ангилал"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Компани"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Огноо"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Бичлэгт хамгийн сүүлд илгээгдсэн зурвасын огноо."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Ноорог"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Дагагчид"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Хэрэв тэмдэглэгдсэн бол таныг шинэ зурвасуудад анхаарал хандуулахыг шаардана."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Сүүлийн зурвасын огноо"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Зурвасууд"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Зурвас болон харилцсан түүх"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Нэр"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Холбогдсон"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Дараалал"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Төрөл"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Уншаагүй Зурвасууд"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "эсвэл"
|
||||
827
quality_control/i18n/nb.po
Normal file
827
quality_control/i18n/nb.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-manufacture-8-0/language/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Dato"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Dato for siste melding på denne posten."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Utkast"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Følgere."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Hvis det er merket nye meldinger så krever dette din oppmerksomhet."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Siste meldingsdato"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Meldinger."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Meldinger og kommunikasjon historie."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referanse"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Ansvarlig"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Uleste meldinger."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "eller"
|
||||
827
quality_control/i18n/nb_NO.po
Normal file
827
quality_control/i18n/nb_NO.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Lukk"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Laget av"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Laget den"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Drøfting"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert den"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/nl.po
Normal file
827
quality_control/i18n/nl.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-02 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-11 14:28+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-manufacture-8-0/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestigen"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Productcategorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referentie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Reeks"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Samenvatting"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "of"
|
||||
827
quality_control/i18n/nl_BE.po
Normal file
827
quality_control/i18n/nl_BE.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/nl_BE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_BE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum laatste bericht voor dit record."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Volgers"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Als dit is ingeschakeld, zijn er nieuwe berichten die uw aandacht vragen."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Datum laatste bericht"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Berichten"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Berichten en communicatiehistoriek"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Naam:"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referentie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Volgorde"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Ongelezen berichten"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "of"
|
||||
827
quality_control/i18n/nl_NL.po
Normal file
827
quality_control/i18n/nl_NL.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:09+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/nl_NL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/pl.po
Normal file
827
quality_control/i18n/pl.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/oca/OCA-manufacture-8-0/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategoria"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Data ostatniej wiadomości w rekordzie."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Projekt"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Obserwatorzy"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Jeśli zaznaczone, to wiadomość wymaga twojej uwagi"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Data ostatniej wiadomości"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ostatnia zmiana"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Wiadomosći"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Wiadomości i historia komunikacji"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Powiązane"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Numeracja"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Nieprzeczytane wiadomości"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "lub"
|
||||
827
quality_control/i18n/pt.po
Normal file
827
quality_control/i18n/pt.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:42+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-manufacture-8-0/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Rascunho"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado a última vez por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Quantidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referência"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sequência"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
833
quality_control/i18n/pt_BR.po
Normal file
833
quality_control/i18n/pt_BR.po
Normal file
@@ -0,0 +1,833 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2015
|
||||
# Felipe Lopes <ti@trojahntoppel.com.br>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016
|
||||
# Paolo Valier, 2016
|
||||
# Paulo Ricardo <ti@shoppingescritorio.com.br>, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-11 01:38+0000\n"
|
||||
"PO-Revision-Date: 2017-02-10 21:41+0000\n"
|
||||
"Last-Translator: Felipe Lopes <ti@trojahntoppel.com.br>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Aceitar"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Respostas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Aprovar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr "Gerado automaticamente"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr "Ruim"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr "Sub Categorias"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr "Correto"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr "Resposta correta?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Data da última mensagem postada no registro"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Provisório"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr "Erro! Você não pode criar categorias recursivas."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr "Notas Externas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr "Nome completo"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr "Genérico"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr "Teste genérico (demo)"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr "Bom"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Grupo por..."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr "Se uma inspeção for gerada automaticamente, ela pode ser removida."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Se marcado. Novas mensagens precisam de sua atenção."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr "Incorreto"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr "Inspeção"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr "Linha de inspeção"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr "Número da inspeção"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Inspeções"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr "Notas internas"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Inventário"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "É um seguidor"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Data da última mensagem"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr "Gerente"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr "Marcar a fazer."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr "Máx"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr "Valor máximo para a questão quantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensagens"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Histórico de mensagens e comunicação"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr "Min"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr "Valor mínimo para a questão quantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr "Valor mínimo não pode ser superior que o valor máximo."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr "Qualidade geral"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr "Sub categoria"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Parceiros"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr "Valor possível para a questão quantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr "Pré preenchimento dos valores corretos"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria do produto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Produto Modelo"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr "Produto associado a inspeção."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr "Categoria do produto"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr "Modelo do produto"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr "Quantitativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr "Valor quantitativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr "Valores quantitativos"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr "Controle de Qualidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspeção Controle de Qualidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Controle de qualidade em linha de inspeção"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr "Questão de Controle de Qualidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr "Teste de Controle de Qualidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr "Qualidade falhou"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr "Sucesso na Qualidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr "Quantitativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr "Valor quantitativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Quantidade"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr "Questão"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr "Tipo da questão"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr "Valor da questão"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr "Questions"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr "Pronto"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referência"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr "Referência do objeto"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr "Referenciado"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Relacionado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Responsável"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr "Procurar inspeção"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr "Procurar linha de inspeção"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr "Selecionar teste"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr "Selecionado pelo parceiro"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sequência"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr "Selecionar teste"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Tamanho"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Sucesso"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr "Sucesso?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Sumário"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Teste"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr "Teste UoM"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr "Categorias de testes"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr "Categoria de teste"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr "Questão do teste"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr "Testes"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr "Categoria de Unidade de Medida"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensagens não lidas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "UoM"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr "UoM mínima e máxima para as questões quantitativas."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr "Valor UoM para uma questão quantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr "Uom"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr "Valores válidos"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr "Resultado para uma questão qualitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr "Resultado para uma questão quantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr "Aguardando aprovação de um supervisor."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr "Quando marcado, a resposta é considerada correta."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr "Você não pode remover uma inspeção gerada automaticamente."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr "Você não pode remover uma inspeção que não esteja como rascunho."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr "Primeiro, você deve definir o teste que será executado."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr "Você deve fonecer uma unidade de medida para a questão quantitativa."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr "Você deve fornecer uma resposta para todas as perguntas qualitativas."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
827
quality_control/i18n/pt_PT.po
Normal file
827
quality_control/i18n/pt_PT.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-25 04:28+0000\n"
|
||||
"PO-Revision-Date: 2017-03-02 09:12+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Aprovar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Data da última mensagem registada."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Rascunho"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "Contém o resumo do Chatter (número de mensagens, ...). Este resumo é formatado diretamente em html para poder ser inserido em vistas de kanban."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Se assinalada, há novas mensagens a requerer a sua atenção."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "É um Seguidor"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Data da Última Mensagem"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação Em"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mensagens"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "História das mensagens e comunicações"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referência"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Sucesso"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Resumo"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Mensagens não lidas"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
828
quality_control/i18n/ro.po
Normal file
828
quality_control/i18n/ro.po
Normal file
@@ -0,0 +1,828 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-11 15:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Acceptă"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Răspunsuri"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Aprobă"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr "Rău"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anulare"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Categorie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr "Corect"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr "Răspuns corect?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Ciornă"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr "Bun"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Grupează după..."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr "Incorect"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr "Inspecție"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare de"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Produs"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Produs șablon"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Cantitate"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr "Întrebare"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr "Întrebări"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referință"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Secventa"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Succes"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr "Succes"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Utilizator"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "sau"
|
||||
827
quality_control/i18n/ru.po
Normal file
827
quality_control/i18n/ru.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-02 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-11 14:11+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отменена"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Компания"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Изменить"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Дата"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Черновик"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Название"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Товар/Услуга"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Кол-во"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Ссылка"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Последовательность"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "или"
|
||||
827
quality_control/i18n/sk.po
Normal file
827
quality_control/i18n/sk.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:42+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-manufacture-8-0/language/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktívne"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategória"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Spoločnosť"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Dátum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Dátum poslednej správy zaslanej záznamu."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Odberatelia"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ak zaškrtnuté, nové správy vyžadujú vašu pozornosť."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Dátum poslednej správy"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Správy"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Správa a história komunikácie"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Meno"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Súvisiace"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Postupnosť"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Neprečítané správy"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "alebo"
|
||||
832
quality_control/i18n/sl.po
Normal file
832
quality_control/i18n/sl.po
Normal file
@@ -0,0 +1,832 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Accounts-Payable - Alkemics, 2015
|
||||
# Chen-Do LU <clu@alkemics.com>, 2015
|
||||
# François Breysse <fb@alkemics.com>, 2015
|
||||
# Hotellook, 2014
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-11 01:38+0000\n"
|
||||
"PO-Revision-Date: 2017-02-10 21:41+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr "Abstraktna vrstica za določanje sprožilcev"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr "Sprejem"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr "Odgovori"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Odobritev"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr "Samodejno ustvarjeno"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr "Slabo"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Preklic"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr "Preklicano"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr "Podrejene kategorije"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Potrditev"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr "Pretvorba med enotami mere je možna le, če pripadajo isti kategoriji. Pretvorba se izvede na osnovi razmerij."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr "Pravilno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr "Pravilni odgovor?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum zadnjega sporočila vpisanega na to vknjižbo."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazni naziv"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Osnutek"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr "Napaka! Rekurzivnih kategorij ne morete ustvariti."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr "Zunanje opombe"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Sledilci"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr "Polni naziv"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr "Splošno"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr "Generičen test (demonstracija)"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr "Dobro"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr "Združi po"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "Povzetek (število sporočil,..) v html formatu, da se lahko neposredno vstavi v poglede tipa kanban."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr "Samodejno ustvarjena inšpekcija ne more biti preklicana ali odstranjena."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Če označeno, zahtevajo nova sporočila vašo pozornost."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr "Če označeno, se test ustvari le, ko je ukrep za enega izmed določenih partnerjev opravljen. Če prazno, se test vedno ustvari."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr "Nepravilno"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr "Inšpekcija"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr "Inšpekcijske postavke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr "Inšpekcijska številka"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr "Inšpekcije"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr "Interni zaznamki"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr "Inventar"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "Je sledilec"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Datum zadnjega sporočila"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnjič posodobil"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr "Upravitelj"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr "Za narediti"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr "Maks"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr "Maksimalna veljavna vrednost za kvantitativno vprašanje."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Sporočila"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Sporočila in kronologija komunikacij"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr "Min"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr "Minimalna veljavna vrednost za kvantitativno vprašanje."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr "Minimalna vrednost ne more biti višja od maksimalne vrednosti."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Opombe"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr "Splošna kvaliteta"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr "Nadrejena kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Partnerji"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr "Mogoče vrednosti za kvalitativna vprašanja."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr "Pred-izpolni s pravilnimi vrednostmi"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Kategorija proizvoda"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predloga proizvoda"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr "Proizvod povezan z inšpekcijo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr "Kategorija proizvoda"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr "Predloga proizvoda"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr "Kvalitativna"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr "Kvalitativna vrednost"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr "Kvalitativne vrednosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr "Kontrola kakovosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inšpekcija nadzora kvalitete"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Inšpekcijska postavka kontrole kakovosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr "Vprašanje kontrole kakovosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr "Testiranje kontrole kakovosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr "Sprožilec kontrole kakovosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr "Sprožilci kontrole kakovosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr "Kvaliteta neustrezna"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr "Kvaliteta ustrezna"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr "Kvantitativna"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr "Kvantitativna vrednost"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Količina"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr "Vprašanje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr "Tip vprašanja"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr "Vrednost vprašanja"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr "Vprašanja"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr "Pripravljeno"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Sklic"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr "Objekt sklica"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr "Sklicano"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Povezano"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Odgovoren"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr "Iskalnik inšpekcij"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr "Iskalnik inšpekcijskih postavk"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr "Izbira testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr "Izbira po partnerju"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Zaporedje"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr "Nastavitev testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr "Velikost"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr "Uspeh"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr "Uspešno?"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr "Povzetek"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr "Testiranje"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr "EM testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr "Kategorije testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr "Kategorija testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr "Vprašanje testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr "Testiranja"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr "Nobena vrednost ni označena kot V REDU. Označiti morate vsaj eno."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr "To polje omogoča skrivanje kategorije brez brisanja."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr "To polje bo označeno, če so bili vsi testi uspešni."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr "Tehnično polje za omogočanje filtriranja po partnerju v sprožilcih"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr "Sprožilec"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr "Kategorija merske enote"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Neprebrana sporočila"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "EM"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr "EM za minimalne in maksimalne vrednosti za kvantitativno vprašanje."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr "EM za inšpekcijsko vrednost pri kvantitativnem vprašanju."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr "EM"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr "Veljavne vrednosti"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr "Vrednost rezultata pri kvalitativnem vprašanju."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr "Vrednost rezultata pri kvantitativnem vprašanju."
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr "Čakanje nadzornikove odobritve"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr "Ko je to polje označeno, se odgovor smatra za pravilen."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr "Samodejno ustvarjenih inšpekcij ne morete odstraniti."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr "Inšpekcije, ki ni osnutek ne morete odstraniti."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr "Najprej morate nastaviti test, ki se bo opravljal."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr "Določite EM za kvalitativna vprašanja."
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr "Določiti morate en odgovor za vsa kvalitativna vprašanja."
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ali"
|
||||
827
quality_control/i18n/sr.po
Normal file
827
quality_control/i18n/sr.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-13 09:34+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Niz"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
827
quality_control/i18n/sr@latin.po
Normal file
827
quality_control/i18n/sr@latin.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/sr@latin/)\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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Категорија"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum zadnje poslate poruke na slog."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Nacrt"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Pratioci"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Ako je označeno, nove poruke zahtjevaju pažnju"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Datum zadnje poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Poruke i istorija komunikacije"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Ime:"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Nepročitane poruke"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ili"
|
||||
827
quality_control/i18n/sv.po
Normal file
827
quality_control/i18n/sv.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-manufacture-8-0/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Företag"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Datum för senast publicerade meddelandet i loggen."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Preliminär"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Följare"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Om ikryssad nya meddelanden som kräver din uppmärksamhet"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Senast meddelandedatum"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Meddelanden"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Meddelande- och kommunikationshistorik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referens"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr "Ansvarig"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Nummerserie"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Olästa meddelanden"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "eller"
|
||||
827
quality_control/i18n/th.po
Normal file
827
quality_control/i18n/th.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Thai (http://www.transifex.com/oca/OCA-manufacture-8-0/language/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "หมวด"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "บริษัท"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "วันที่"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "วันที่ข้อความล่าสุดโพสต์ในระเบียน"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "ฉบับร่าง"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "ผู้ติดตาม"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "ถ้าเลือก ข้อความใหม่จะต้องการความสนใจจากคุณ"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "วันที่ข้อความล่าสุด"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "ข้อความ"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "ข้อความและประวัติการติดต่อ"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "ชื่อ"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "อ้างถึง"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "กำหนดเลขที่เอกสาร"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "ชนิด"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "ข้อความที่ยังไม่ได้อ่าน"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "หรือ"
|
||||
827
quality_control/i18n/tr.po
Normal file
827
quality_control/i18n/tr.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-manufacture-8-0/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr "Onayla"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Tarih"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Kayıda eklenen son mesajın tarihi."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Taslak"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Takipçiler"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "Sohbet özetini tutar (kaç mesa vs) Bu özet kanban görünümleri gibi yerlerde kullanılmak için doğrudan HTML formatındadır. "
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Eğer işaretlenirse yeni mesajlar dikkatinizi ister."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Son mesaj tarihi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son değişiklik"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son güncelleyen"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son güncelleme"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Mesajlar"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Mesaj ve iletişim geçmişi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Notlar"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr "Ortaklar"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "Referans"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sıra"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Durum"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Okunmamış mesajlar"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr "UoM"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ya da"
|
||||
827
quality_control/i18n/tr_TR.po
Normal file
827
quality_control/i18n/tr_TR.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 05:27+0000\n"
|
||||
"PO-Revision-Date: 2017-01-04 14:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/tr_TR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "İptal et"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr "Onayla"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Taslak"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "En son güncelleyen "
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Ad"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr "Notlar"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Ürün şablonu"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr "Miktar"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Sıra"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr "Hal"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "ya da "
|
||||
827
quality_control/i18n/uk.po
Normal file
827
quality_control/i18n/uk.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-13 09:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-manufacture-8-0/language/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=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: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Category"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Дата створення"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Дата"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Дата останнього повідомлення по запису."
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Підписники"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Якщо позначено, то повідомленя потребує вашої уваги"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Дата останнього повідомлення"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Повідомлення"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Повідомлення та історія бесіди"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:62
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "Пов’язано"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Послідовність"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:54
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Тип"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Непрочитані повідомлення"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:92
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:95
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:108
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:123
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:118
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "або"
|
||||
827
quality_control/i18n/vi.po
Normal file
827
quality_control/i18n/vi.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:39+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-manufacture-8-0/language/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy bỏ"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "Chuyên mục"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "Ngày"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "Ngày của thông điệp gần nhất được ghi nhận trên một bản ghi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Dự thảo"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "Người dõi theo"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "Nếu đánh dấu kiểm, các thông điệp mới yêu cầu sự có mặt của bạn."
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "Ngày thông điệp cuối cùng"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "Thông điệp"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "Lịch sử trao đổi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "Trình tự"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "Loại"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "Thông điệp chưa đọc"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "Người sử dụng"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "hoặc"
|
||||
828
quality_control/i18n/vi_VN.po
Normal file
828
quality_control/i18n/vi_VN.po
Normal file
@@ -0,0 +1,828 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:09+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/vi_VN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "Có hiệu lực"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Tạo bởi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Tạo vào"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Mẫu sản phẩm"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "hoặc"
|
||||
827
quality_control/i18n/zh_CN.po
Normal file
827
quality_control/i18n/zh_CN.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-19 01:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr "有效"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "类别"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "发布到记录上的最后消息的日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "草稿"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "关注者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr "HTML格式的简介,包括了各种项目的总结信息(比如消息数,作业数……)"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "查看是否有需要留意的新信息。"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr "关注者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "最后消息日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "消息"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "消息和通信历史"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "引用"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr "建立联系"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "序号"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "类型"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "未读消息"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "或"
|
||||
827
quality_control/i18n/zh_TW.po
Normal file
827
quality_control/i18n/zh_TW.po
Normal file
@@ -0,0 +1,827 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-04-25 10:42+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-manufacture-8-0/language/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_category_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_line
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger_product_template_line
|
||||
msgid "Abstract line for defining triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,active:0 field:qc.test.category,active:0
|
||||
#: field:qc.trigger,active:0
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,possible_ql_values:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,auto_generated:0
|
||||
msgid "Auto-generated"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_2
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Cancel"
|
||||
msgstr "刪除"
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,category:0
|
||||
msgid "Category"
|
||||
msgstr "分類"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,child_ids:0
|
||||
msgid "Child categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,company_id:0 field:qc.test,company_id:0
|
||||
#: field:qc.trigger,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_category:0
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Correct"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question.value,ok:0
|
||||
msgid "Correct answer?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_uid:0 field:qc.inspection.line,create_uid:0
|
||||
#: field:qc.inspection.set.test,create_uid:0 field:qc.test,create_uid:0
|
||||
#: field:qc.test.category,create_uid:0 field:qc.test.question,create_uid:0
|
||||
#: field:qc.test.question.value,create_uid:0 field:qc.trigger,create_uid:0
|
||||
#: field:qc.trigger.product_category_line,create_uid:0
|
||||
#: field:qc.trigger.product_line,create_uid:0
|
||||
#: field:qc.trigger.product_template_line,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "建立者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,create_date:0 field:qc.inspection.line,create_date:0
|
||||
#: field:qc.inspection.set.test,create_date:0 field:qc.test,create_date:0
|
||||
#: field:qc.test.category,create_date:0 field:qc.test.question,create_date:0
|
||||
#: field:qc.test.question.value,create_date:0 field:qc.trigger,create_date:0
|
||||
#: field:qc.trigger.product_category_line,create_date:0
|
||||
#: field:qc.trigger.product_line,create_date:0
|
||||
#: field:qc.trigger.product_template_line,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,date:0
|
||||
msgid "Date"
|
||||
msgstr "日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_last_post:0
|
||||
msgid "Date of the last message posted on the record."
|
||||
msgstr "釋出到記錄上的最後資訊的日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,display_name:0 field:qc.inspection.line,display_name:0
|
||||
#: field:qc.inspection.set.test,display_name:0 field:qc.test,display_name:0
|
||||
#: field:qc.test.category,display_name:0 field:qc.test.question,display_name:0
|
||||
#: field:qc.test.question.value,display_name:0 field:qc.trigger,display_name:0
|
||||
#: field:qc.trigger.line,display_name:0
|
||||
#: field:qc.trigger.product_category_line,display_name:0
|
||||
#: field:qc.trigger.product_line,display_name:0
|
||||
#: field:qc.trigger.product_template_line,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Draft"
|
||||
msgstr "草稿"
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test_category.py:32
|
||||
#, python-format
|
||||
msgid "Error ! You can not create recursive categories."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,external_notes:0
|
||||
msgid "External notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_follower_ids:0
|
||||
msgid "Followers"
|
||||
msgstr "關注者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,complete_name:0
|
||||
msgid "Full name"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_generic
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test,name:quality_control.qc_test_1
|
||||
msgid "Generic Test (demo)"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question.value,name:quality_control.qc_test_question_value_1
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Group by..."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_summary:0
|
||||
msgid ""
|
||||
"Holds the Chatter summary (number of messages, ...). This summary is "
|
||||
"directly in html format in order to be inserted in kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,id:0 field:qc.inspection.line,id:0
|
||||
#: field:qc.inspection.set.test,id:0 field:qc.test,id:0
|
||||
#: field:qc.test.category,id:0 field:qc.test.question,id:0
|
||||
#: field:qc.test.question.value,id:0 field:qc.trigger,id:0
|
||||
#: field:qc.trigger.line,id:0 field:qc.trigger.product_category_line,id:0
|
||||
#: field:qc.trigger.product_line,id:0
|
||||
#: field:qc.trigger.product_template_line,id:0
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,auto_generated:0
|
||||
msgid "If an inspection is auto-generated, it can be canceled nor removed."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_unread:0
|
||||
msgid "If checked new messages require your attention."
|
||||
msgstr "當有新訊息時通知您。"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger.line,partners:0
|
||||
#: help:qc.trigger.product_category_line,partners:0
|
||||
#: help:qc.trigger.product_line,partners:0
|
||||
#: help:qc.trigger.product_template_line,partners:0
|
||||
msgid ""
|
||||
"If filled, the test will only be created when the action is done for one of "
|
||||
"the specified partners. If empty, the test will always be created."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Incorrect"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,inspection_id:0
|
||||
msgid "Inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_line
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_lines_menu
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,inspection_lines:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_tree_view
|
||||
msgid "Inspection lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,name:0
|
||||
msgid "Inspection number"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu
|
||||
#: model:ir.ui.menu,name:quality_control.qc_inspection_menu_parent
|
||||
#: view:qc.inspection:quality_control.qc_inspection_tree_view
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection,internal_notes:0
|
||||
msgid "Internal notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_is_follower:0
|
||||
msgid "Is a Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_last_post:0
|
||||
msgid "Last Message Date"
|
||||
msgstr "最後訊息日期"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,__last_update:0
|
||||
#: field:qc.inspection.line,__last_update:0
|
||||
#: field:qc.inspection.set.test,__last_update:0 field:qc.test,__last_update:0
|
||||
#: field:qc.test.category,__last_update:0
|
||||
#: field:qc.test.question,__last_update:0
|
||||
#: field:qc.test.question.value,__last_update:0
|
||||
#: field:qc.trigger,__last_update:0 field:qc.trigger.line,__last_update:0
|
||||
#: field:qc.trigger.product_category_line,__last_update:0
|
||||
#: field:qc.trigger.product_line,__last_update:0
|
||||
#: field:qc.trigger.product_template_line,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改:"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_uid:0 field:qc.inspection.line,write_uid:0
|
||||
#: field:qc.inspection.set.test,write_uid:0 field:qc.test,write_uid:0
|
||||
#: field:qc.test.category,write_uid:0 field:qc.test.question,write_uid:0
|
||||
#: field:qc.test.question.value,write_uid:0 field:qc.trigger,write_uid:0
|
||||
#: field:qc.trigger.product_category_line,write_uid:0
|
||||
#: field:qc.trigger.product_line,write_uid:0
|
||||
#: field:qc.trigger.product_template_line,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新:"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,write_date:0 field:qc.inspection.line,write_date:0
|
||||
#: field:qc.inspection.set.test,write_date:0 field:qc.test,write_date:0
|
||||
#: field:qc.test.category,write_date:0 field:qc.test.question,write_date:0
|
||||
#: field:qc.test.question.value,write_date:0 field:qc.trigger,write_date:0
|
||||
#: field:qc.trigger.product_category_line,write_date:0
|
||||
#: field:qc.trigger.product_line,write_date:0
|
||||
#: field:qc.trigger.product_template_line,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Mark todo"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,max_value:0 field:qc.test.question,max_value:0
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,max_value:0
|
||||
msgid "Maximum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_ids:0
|
||||
msgid "Messages"
|
||||
msgstr "訊息"
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,message_ids:0
|
||||
msgid "Messages and communication history"
|
||||
msgstr "訊息及聯絡紀錄"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,min_value:0 field:qc.test.question,min_value:0
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,min_value:0
|
||||
msgid "Minimum valid value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:63
|
||||
#, python-format
|
||||
msgid "Minimum value can't be higher than maximum value."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,name:0 field:qc.test.category,name:0
|
||||
#: field:qc.test.question,name:0 field:qc.test.question.value,name:0
|
||||
#: field:qc.trigger,name:0
|
||||
msgid "Name"
|
||||
msgstr "名稱"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: field:qc.inspection.line,notes:0 field:qc.test.question,notes:0
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_1
|
||||
msgid "Overall quality"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.category,parent_id:0
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,partners:0
|
||||
#: field:qc.trigger.product_category_line,partners:0
|
||||
#: field:qc.trigger.product_line,partners:0
|
||||
#: field:qc.trigger.product_template_line,partners:0
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question_value
|
||||
msgid "Possible values for qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,fill_correct_values:0
|
||||
msgid "Pre-fill with correct values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_product
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,product:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,product:0 field:qc.trigger.product_line,product:0
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,product:0 help:qc.inspection.line,product:0
|
||||
msgid "Product associated with the inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_category_line,product_category:0
|
||||
msgid "Product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.product_template_line,product_template:0
|
||||
msgid "Product template"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Qualitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,qualitative_value:0
|
||||
msgid "Qualitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,ql_values:0
|
||||
msgid "Qualitative values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.module.category,name:quality_control.module_category_quality_control
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
msgid "Quality control"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_question
|
||||
msgid "Quality control question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test
|
||||
msgid "Quality control test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_trigger
|
||||
#: view:qc.trigger:quality_control.qc_trigger_form_view
|
||||
msgid "Quality control trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:product.category:quality_control.product_category_qc_form_view
|
||||
#: field:product.category,qc_triggers:0 field:product.product,qc_triggers:0
|
||||
#: view:product.template:quality_control.product_template_qc_form_view
|
||||
#: field:product.template,qc_triggers:0
|
||||
#: view:qc.trigger:quality_control.qc_trigger_tree_view
|
||||
msgid "Quality control triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Quality success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection.line,question_type:0
|
||||
#: selection:qc.test.question,type:0
|
||||
msgid "Quantitative"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,quantitative_value:0
|
||||
msgid "Quantitative value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,qty:0
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
#: field:qc.inspection.line,name:0
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,question_type:0
|
||||
msgid "Question type"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
msgid "Question value"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
#: view:qc.test:quality_control.qc_test_form_view field:qc.test,test_lines:0
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Ready"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,object_id:0
|
||||
msgid "Reference"
|
||||
msgstr "參考"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,object_id:0
|
||||
msgid "Reference object"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.category,name:quality_control.qc_test_template_category_referenced
|
||||
msgid "Referenced"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.test,type:0
|
||||
msgid "Related"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,user:0 field:qc.trigger.line,user:0
|
||||
#: field:qc.trigger.product_category_line,user:0
|
||||
#: field:qc.trigger.product_line,user:0
|
||||
#: field:qc.trigger.product_template_line,user:0
|
||||
msgid "Responsible"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
msgid "Search inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Search inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_inspection_set_test
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "Select test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger,partner_selectable:0
|
||||
msgid "Selectable by partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,sequence:0
|
||||
msgid "Sequence"
|
||||
msgstr "序列"
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_form_view
|
||||
msgid "Set test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:qc.test.question,name:quality_control.qc_test_question_2
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,state:0
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,success:0
|
||||
#: view:qc.inspection.line:quality_control.qc_inspection_line_search_view
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,success:0
|
||||
msgid "Success?"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_summary:0
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection:quality_control.qc_inspection_search_view
|
||||
#: field:qc.inspection,test:0 field:qc.inspection.set.test,test:0
|
||||
#: view:qc.test:quality_control.qc_test_form_view
|
||||
#: field:qc.test.question,test:0 field:qc.trigger.line,test:0
|
||||
#: field:qc.trigger.product_category_line,test:0
|
||||
#: field:qc.trigger.product_line,test:0
|
||||
#: field:qc.trigger.product_template_line,test:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_id:0
|
||||
msgid "Test UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test_category
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_category_menu
|
||||
#: view:qc.test.category:quality_control.qc_test_category_tree_view
|
||||
msgid "Test categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.model,name:quality_control.model_qc_test_category
|
||||
msgid "Test category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_line:0
|
||||
#: view:qc.test.question:quality_control.qc_test_question_form_view
|
||||
#: field:qc.test.question.value,test_line:0
|
||||
msgid "Test question"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:ir.actions.act_window,name:quality_control.action_qc_test
|
||||
#: model:ir.ui.menu,name:quality_control.qc_menu_test_parent
|
||||
#: model:ir.ui.menu,name:quality_control.qc_test_menu
|
||||
#: view:qc.test:quality_control.qc_test_tree_view
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_test.py:55
|
||||
#, python-format
|
||||
msgid "There isn't no value marked as OK. You have to mark at least one."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.category,active:0
|
||||
msgid "This field allows you to hide the category without removing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection,success:0
|
||||
msgid "This field will be marked if all tests have succeeded."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.trigger,partner_selectable:0
|
||||
msgid "This technical field is to allow to filter by partner in triggers"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.trigger.line,trigger:0
|
||||
#: field:qc.trigger.product_category_line,trigger:0
|
||||
#: field:qc.trigger.product_line,trigger:0
|
||||
#: field:qc.trigger.product_template_line,trigger:0
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test,type:0 field:qc.test.question,type:0
|
||||
msgid "Type"
|
||||
msgstr "類型"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,test_uom_category:0
|
||||
msgid "Unit of Measure Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection,message_unread:0
|
||||
msgid "Unread Messages"
|
||||
msgstr "未讀訊息"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,uom_id:0
|
||||
msgid "UoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,test_uom_id:0
|
||||
msgid "UoM for minimum and maximum values for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,uom_id:0
|
||||
msgid "UoM of the inspection value for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.test.question,uom_id:0
|
||||
msgid "Uom"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: model:res.groups,name:quality_control.group_quality_control_user
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: quality_control
|
||||
#: field:qc.inspection.line,valid_values:0
|
||||
msgid "Valid values"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,qualitative_value:0
|
||||
msgid "Value of the result for a qualitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.inspection.line,quantitative_value:0
|
||||
msgid "Value of the result for a quantitative question."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: selection:qc.inspection,state:0
|
||||
msgid "Waiting supervisor approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: help:qc.test.question.value,ok:0
|
||||
msgid "When this field is marked, the answer is considered correct."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:93
|
||||
#, python-format
|
||||
msgid "You cannot remove an auto-generated inspection."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:96
|
||||
#, python-format
|
||||
msgid "You cannot remove an inspection that is not in draft state."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:109
|
||||
#, python-format
|
||||
msgid "You must first set the test to perform."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:124
|
||||
#, python-format
|
||||
msgid "You should provide a unit of measure for quantitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: code:addons/quality_control/models/qc_inspection.py:119
|
||||
#, python-format
|
||||
msgid "You should provide an answer for all qualitative questions."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control
|
||||
#: view:qc.inspection.set.test:quality_control.view_qc_test_set_test_form
|
||||
msgid "or"
|
||||
msgstr "或"
|
||||
15
quality_control/models/__init__.py
Normal file
15
quality_control/models/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import qc_trigger
|
||||
from . import qc_trigger_line
|
||||
from . import qc_test_category
|
||||
from . import qc_test
|
||||
from . import qc_inspection
|
||||
from . import product_product
|
||||
from . import product_template
|
||||
from . import product_category
|
||||
17
quality_control/models/product_category.py
Normal file
17
quality_control/models/product_category.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import fields, models
|
||||
|
||||
|
||||
class ProductCategory(models.Model):
|
||||
_inherit = "product.category"
|
||||
|
||||
qc_triggers = fields.One2many(
|
||||
comodel_name="qc.trigger.product_category_line",
|
||||
inverse_name="product_category",
|
||||
string="Quality control triggers")
|
||||
16
quality_control/models/product_product.py
Normal file
16
quality_control/models/product_product.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import fields, models
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = "product.product"
|
||||
|
||||
qc_triggers = fields.One2many(
|
||||
comodel_name="qc.trigger.product_line", inverse_name="product",
|
||||
string="Quality control triggers")
|
||||
17
quality_control/models/product_template.py
Normal file
17
quality_control/models/product_template.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import fields, models
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = "product.template"
|
||||
|
||||
qc_triggers = fields.One2many(
|
||||
comodel_name="qc.trigger.product_template_line",
|
||||
inverse_name="product_template",
|
||||
string="Quality control triggers")
|
||||
298
quality_control/models/qc_inspection.py
Normal file
298
quality_control/models/qc_inspection.py
Normal file
@@ -0,0 +1,298 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import api, exceptions, fields, models, _
|
||||
import openerp.addons.decimal_precision as dp
|
||||
|
||||
|
||||
class QcInspection(models.Model):
|
||||
_name = 'qc.inspection'
|
||||
_description = 'Quality control inspection'
|
||||
_inherit = ['mail.thread', 'ir.needaction_mixin']
|
||||
|
||||
@api.one
|
||||
@api.depends('inspection_lines', 'inspection_lines.success')
|
||||
def _success(self):
|
||||
self.success = all([x.success for x in self.inspection_lines])
|
||||
|
||||
@api.multi
|
||||
def _links_get(self):
|
||||
link_obj = self.env['res.request.link']
|
||||
return [(r.object, r.name) for r in link_obj.search([])]
|
||||
|
||||
@api.one
|
||||
@api.depends('object_id')
|
||||
def _get_product(self):
|
||||
if self.object_id and self.object_id._name == 'product.product':
|
||||
self.product = self.object_id
|
||||
else:
|
||||
self.product = False
|
||||
|
||||
name = fields.Char(
|
||||
string='Inspection number', required=True, default='/', select=True,
|
||||
readonly=True, states={'draft': [('readonly', False)]}, copy=False)
|
||||
date = fields.Datetime(
|
||||
string='Date', required=True, readonly=True, copy=False,
|
||||
default=fields.Datetime.now,
|
||||
states={'draft': [('readonly', False)]}, select=True)
|
||||
object_id = fields.Reference(
|
||||
string='Reference', selection=_links_get, readonly=True,
|
||||
states={'draft': [('readonly', False)]}, ondelete="set null")
|
||||
product = fields.Many2one(
|
||||
comodel_name="product.product", compute="_get_product", store=True,
|
||||
help="Product associated with the inspection")
|
||||
qty = fields.Float(string="Quantity", default=1.0)
|
||||
test = fields.Many2one(
|
||||
comodel_name='qc.test', string='Test', readonly=True, select=True)
|
||||
inspection_lines = fields.One2many(
|
||||
comodel_name='qc.inspection.line', inverse_name='inspection_id',
|
||||
string='Inspection lines', readonly=True,
|
||||
states={'ready': [('readonly', False)]})
|
||||
internal_notes = fields.Text(string='Internal notes')
|
||||
external_notes = fields.Text(
|
||||
string='External notes',
|
||||
states={'success': [('readonly', True)],
|
||||
'failed': [('readonly', True)]})
|
||||
state = fields.Selection(
|
||||
[('draft', 'Draft'),
|
||||
('ready', 'Ready'),
|
||||
('waiting', 'Waiting supervisor approval'),
|
||||
('success', 'Quality success'),
|
||||
('failed', 'Quality failed'),
|
||||
('canceled', 'Canceled')],
|
||||
string='State', readonly=True, default='draft')
|
||||
success = fields.Boolean(
|
||||
compute="_success", string='Success',
|
||||
help='This field will be marked if all tests have succeeded.',
|
||||
store=True)
|
||||
auto_generated = fields.Boolean(
|
||||
string='Auto-generated', readonly=True, copy=False,
|
||||
help='If an inspection is auto-generated, it can be canceled nor '
|
||||
'removed.')
|
||||
company_id = fields.Many2one(
|
||||
comodel_name='res.company', string='Company', readonly=True,
|
||||
states={'draft': [('readonly', False)]},
|
||||
default=lambda self: self.env['res.company']._company_default_get(
|
||||
'qc.inspection'))
|
||||
user = fields.Many2one(
|
||||
comodel_name='res.users', string='Responsible',
|
||||
track_visibility='always', default=lambda self: self.env.user)
|
||||
|
||||
@api.model
|
||||
def create(self, vals):
|
||||
if vals.get('name', '/') == '/':
|
||||
vals['name'] = self.env['ir.sequence'].get('qc.inspection')
|
||||
return super(QcInspection, self).create(vals)
|
||||
|
||||
@api.multi
|
||||
def unlink(self):
|
||||
for inspection in self:
|
||||
if inspection.auto_generated:
|
||||
raise exceptions.Warning(
|
||||
_("You cannot remove an auto-generated inspection."))
|
||||
if inspection.state != 'draft':
|
||||
raise exceptions.Warning(
|
||||
_("You cannot remove an inspection that is not in draft "
|
||||
"state."))
|
||||
return super(QcInspection, self).unlink()
|
||||
|
||||
@api.multi
|
||||
def action_draft(self):
|
||||
self.write({'state': 'draft'})
|
||||
|
||||
@api.multi
|
||||
def action_todo(self):
|
||||
for inspection in self:
|
||||
if not inspection.test:
|
||||
raise exceptions.Warning(
|
||||
_("You must first set the test to perform."))
|
||||
self.write({'state': 'ready'})
|
||||
|
||||
@api.multi
|
||||
def action_confirm(self):
|
||||
for inspection in self:
|
||||
for line in inspection.inspection_lines:
|
||||
if line.question_type == 'qualitative':
|
||||
if not line.qualitative_value:
|
||||
raise exceptions.Warning(
|
||||
_("You should provide an answer for all "
|
||||
"qualitative questions."))
|
||||
else:
|
||||
if not line.uom_id:
|
||||
raise exceptions.Warning(
|
||||
_("You should provide a unit of measure for "
|
||||
"quantitative questions."))
|
||||
if inspection.success:
|
||||
inspection.state = 'success'
|
||||
else:
|
||||
inspection.state = 'waiting'
|
||||
|
||||
@api.multi
|
||||
def action_approve(self):
|
||||
for inspection in self:
|
||||
if inspection.success:
|
||||
inspection.state = 'success'
|
||||
else:
|
||||
inspection.state = 'failed'
|
||||
|
||||
@api.multi
|
||||
def action_cancel(self):
|
||||
self.write({'state': 'canceled'})
|
||||
|
||||
@api.multi
|
||||
def set_test(self, trigger_line, force_fill=False):
|
||||
for inspection in self:
|
||||
header = self._prepare_inspection_header(
|
||||
inspection.object_id, trigger_line)
|
||||
del header['state'] # don't change current status
|
||||
del header['auto_generated'] # don't change auto_generated flag
|
||||
del header['user'] # don't change current user
|
||||
inspection.write(header)
|
||||
inspection.inspection_lines.unlink()
|
||||
inspection.inspection_lines = inspection._prepare_inspection_lines(
|
||||
trigger_line.test, force_fill=force_fill)
|
||||
|
||||
@api.multi
|
||||
def _make_inspection(self, object_ref, trigger_line):
|
||||
"""Overridable hook method for creating inspection from test.
|
||||
:param object_ref: Object instance
|
||||
:param trigger_line: Trigger line instance
|
||||
:return: Inspection object
|
||||
"""
|
||||
inspection = self.create(self._prepare_inspection_header(
|
||||
object_ref, trigger_line))
|
||||
inspection.set_test(trigger_line)
|
||||
return inspection
|
||||
|
||||
@api.multi
|
||||
def _prepare_inspection_header(self, object_ref, trigger_line):
|
||||
"""Overridable hook method for preparing inspection header.
|
||||
:param object_ref: Object instance
|
||||
:param trigger_line: Trigger line instance
|
||||
:return: List of values for creating the inspection
|
||||
"""
|
||||
return {
|
||||
'object_id': object_ref and '%s,%s' % (object_ref._name,
|
||||
object_ref.id) or False,
|
||||
'state': 'ready',
|
||||
'test': trigger_line.test.id,
|
||||
'user': trigger_line.user.id,
|
||||
'auto_generated': True,
|
||||
}
|
||||
|
||||
@api.multi
|
||||
def _prepare_inspection_lines(self, test, force_fill=False):
|
||||
new_data = []
|
||||
for line in test.test_lines:
|
||||
data = self._prepare_inspection_line(
|
||||
test, line, fill=test.fill_correct_values or force_fill)
|
||||
new_data.append((0, 0, data))
|
||||
return new_data
|
||||
|
||||
@api.multi
|
||||
def _prepare_inspection_line(self, test, line, fill=None):
|
||||
data = {
|
||||
'name': line.name,
|
||||
'test_line': line.id,
|
||||
'notes': line.notes,
|
||||
'min_value': line.min_value,
|
||||
'max_value': line.max_value,
|
||||
'test_uom_id': line.uom_id.id,
|
||||
'uom_id': line.uom_id.id,
|
||||
'question_type': line.type,
|
||||
'possible_ql_values': [x.id for x in line.ql_values]
|
||||
}
|
||||
if fill:
|
||||
if line.type == 'qualitative':
|
||||
# Fill with the first correct value found
|
||||
for value in line.ql_values:
|
||||
if value.ok:
|
||||
data['qualitative_value'] = value.id
|
||||
break
|
||||
else:
|
||||
# Fill with a value inside the interval
|
||||
data['quantitative_value'] = (line.min_value +
|
||||
line.max_value) * 0.5
|
||||
return data
|
||||
|
||||
|
||||
class QcInspectionLine(models.Model):
|
||||
_name = 'qc.inspection.line'
|
||||
_description = "Quality control inspection line"
|
||||
|
||||
@api.one
|
||||
@api.depends('question_type', 'uom_id', 'test_uom_id', 'max_value',
|
||||
'min_value', 'quantitative_value', 'qualitative_value',
|
||||
'possible_ql_values')
|
||||
def quality_test_check(self):
|
||||
if self.question_type == 'qualitative':
|
||||
self.success = self.qualitative_value.ok
|
||||
else:
|
||||
if self.uom_id.id == self.test_uom_id.id:
|
||||
amount = self.quantitative_value
|
||||
else:
|
||||
amount = self.env['product.uom']._compute_qty(
|
||||
self.uom_id.id, self.quantitative_value,
|
||||
self.test_uom_id.id)
|
||||
self.success = self.max_value >= amount >= self.min_value
|
||||
|
||||
@api.one
|
||||
@api.depends('possible_ql_values', 'min_value', 'max_value', 'test_uom_id',
|
||||
'question_type')
|
||||
def get_valid_values(self):
|
||||
if self.question_type == 'qualitative':
|
||||
self.valid_values = ", ".join([x.name for x in
|
||||
self.possible_ql_values if x.ok])
|
||||
else:
|
||||
self.valid_values = "%s-%s" % (self.min_value, self.max_value)
|
||||
if self.env.ref("product.group_uom") in self.env.user.groups_id:
|
||||
self.valid_values += " %s" % self.test_uom_id.name
|
||||
|
||||
inspection_id = fields.Many2one(
|
||||
comodel_name='qc.inspection', string='Inspection', ondelete='cascade')
|
||||
name = fields.Char(string="Question", readonly=True)
|
||||
product = fields.Many2one(
|
||||
comodel_name="product.product", related="inspection_id.product",
|
||||
store=True)
|
||||
test_line = fields.Many2one(
|
||||
comodel_name='qc.test.question', string='Test question',
|
||||
readonly=True)
|
||||
possible_ql_values = fields.Many2many(
|
||||
comodel_name='qc.test.question.value', string='Answers')
|
||||
quantitative_value = fields.Float(
|
||||
'Quantitative value', digits=dp.get_precision('Quality Control'),
|
||||
help="Value of the result for a quantitative question.")
|
||||
qualitative_value = fields.Many2one(
|
||||
comodel_name='qc.test.question.value', string='Qualitative value',
|
||||
help="Value of the result for a qualitative question.",
|
||||
domain="[('id', 'in', possible_ql_values[0][2])]")
|
||||
notes = fields.Text(string='Notes')
|
||||
min_value = fields.Float(
|
||||
string='Min', digits=dp.get_precision('Quality Control'),
|
||||
readonly=True, help="Minimum valid value for a quantitative question.")
|
||||
max_value = fields.Float(
|
||||
string='Max', digits=dp.get_precision('Quality Control'),
|
||||
readonly=True, help="Maximum valid value for a quantitative question.")
|
||||
test_uom_id = fields.Many2one(
|
||||
comodel_name='product.uom', string='Test UoM', readonly=True,
|
||||
help="UoM for minimum and maximum values for a quantitative "
|
||||
"question.")
|
||||
test_uom_category = fields.Many2one(
|
||||
comodel_name="product.uom.categ", related="test_uom_id.category_id",
|
||||
store=True)
|
||||
uom_id = fields.Many2one(
|
||||
comodel_name='product.uom', string='UoM',
|
||||
domain="[('category_id', '=', test_uom_category)]",
|
||||
help="UoM of the inspection value for a quantitative question.")
|
||||
question_type = fields.Selection(
|
||||
[('qualitative', 'Qualitative'),
|
||||
('quantitative', 'Quantitative')],
|
||||
string='Question type', readonly=True)
|
||||
valid_values = fields.Char(string="Valid values", store=True,
|
||||
compute="get_valid_values")
|
||||
success = fields.Boolean(
|
||||
compute="quality_test_check", string="Success?", store=True)
|
||||
97
quality_control/models/qc_test.py
Normal file
97
quality_control/models/qc_test.py
Normal file
@@ -0,0 +1,97 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import api, exceptions, fields, models, _
|
||||
import openerp.addons.decimal_precision as dp
|
||||
|
||||
|
||||
class QcTest(models.Model):
|
||||
"""
|
||||
A test is a group of questions along with the values that make them valid.
|
||||
"""
|
||||
_name = 'qc.test'
|
||||
_description = 'Quality control test'
|
||||
|
||||
@api.multi
|
||||
def _links_get(self):
|
||||
link_obj = self.env['res.request.link']
|
||||
return [(r.object, r.name) for r in link_obj.search([])]
|
||||
|
||||
active = fields.Boolean('Active', default=True)
|
||||
name = fields.Char(
|
||||
string='Name', required=True, translate=True, select=True)
|
||||
test_lines = fields.One2many(
|
||||
comodel_name='qc.test.question', inverse_name='test',
|
||||
string='Questions', copy=True)
|
||||
object_id = fields.Reference(
|
||||
string='Reference object', selection=_links_get,)
|
||||
fill_correct_values = fields.Boolean(
|
||||
string='Pre-fill with correct values')
|
||||
type = fields.Selection(
|
||||
[('generic', 'Generic'),
|
||||
('related', 'Related')],
|
||||
string='Type', select=True, required=True, default='generic')
|
||||
category = fields.Many2one(
|
||||
comodel_name='qc.test.category', string='Category')
|
||||
company_id = fields.Many2one(
|
||||
comodel_name='res.company', string='Company',
|
||||
default=lambda self: self.env['res.company']._company_default_get(
|
||||
'qc.test'))
|
||||
|
||||
|
||||
class QcTestQuestion(models.Model):
|
||||
"""Each test line is a question with its valid value(s)."""
|
||||
_name = 'qc.test.question'
|
||||
_description = 'Quality control question'
|
||||
_order = 'sequence, id'
|
||||
|
||||
@api.one
|
||||
@api.constrains('ql_values')
|
||||
def _check_valid_answers(self):
|
||||
if (self.type == 'qualitative' and self.ql_values and
|
||||
not self.ql_values.filtered('ok')):
|
||||
raise exceptions.Warning(
|
||||
_("There isn't no value marked as OK. You have to mark at "
|
||||
"least one."))
|
||||
|
||||
@api.one
|
||||
@api.constrains('min_value', 'max_value')
|
||||
def _check_valid_range(self):
|
||||
if self.type == 'quantitative' and self.min_value > self.max_value:
|
||||
raise exceptions.Warning(
|
||||
_("Minimum value can't be higher than maximum value."))
|
||||
|
||||
sequence = fields.Integer(
|
||||
string='Sequence', required=True, default="10")
|
||||
test = fields.Many2one(comodel_name='qc.test', string='Test')
|
||||
name = fields.Char(
|
||||
string='Name', required=True, select=True, translate=True)
|
||||
type = fields.Selection(
|
||||
[('qualitative', 'Qualitative'),
|
||||
('quantitative', 'Quantitative')], string='Type', required=True)
|
||||
ql_values = fields.One2many(
|
||||
comodel_name='qc.test.question.value', inverse_name="test_line",
|
||||
string='Qualitative values', copy=True)
|
||||
notes = fields.Text(string='Notes')
|
||||
min_value = fields.Float(string='Min',
|
||||
digits=dp.get_precision('Quality Control'))
|
||||
max_value = fields.Float(string='Max',
|
||||
digits=dp.get_precision('Quality Control'),)
|
||||
uom_id = fields.Many2one(comodel_name='product.uom', string='Uom')
|
||||
|
||||
|
||||
class QcTestQuestionValue(models.Model):
|
||||
_name = 'qc.test.question.value'
|
||||
_description = 'Possible values for qualitative questions.'
|
||||
|
||||
test_line = fields.Many2one(
|
||||
comodel_name="qc.test.question", string="Test question")
|
||||
name = fields.Char(
|
||||
string='Name', required=True, select=True, translate=True)
|
||||
ok = fields.Boolean(
|
||||
string='Correct answer?',
|
||||
help="When this field is marked, the answer is considered correct.")
|
||||
49
quality_control/models/qc_test_category.py
Normal file
49
quality_control/models/qc_test_category.py
Normal file
@@ -0,0 +1,49 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import api, exceptions, fields, models, _
|
||||
|
||||
|
||||
class QcTestTemplateCategory(models.Model):
|
||||
_name = 'qc.test.category'
|
||||
_description = 'Test category'
|
||||
|
||||
@api.multi
|
||||
@api.depends('name', 'parent_id')
|
||||
def _get_complete_name(self):
|
||||
for record in self:
|
||||
names = [record.name or '']
|
||||
parent = record.parent_id
|
||||
while parent:
|
||||
names.append(parent.name)
|
||||
parent = parent.parent_id
|
||||
record.complete_name = " / ".join(reversed(names))
|
||||
|
||||
@api.constrains('parent_id')
|
||||
def _check_recursion(self):
|
||||
ids = self.ids
|
||||
level = 100
|
||||
while ids:
|
||||
parents = self.search([('id', 'in', ids),
|
||||
('parent_id', '!=', False)])
|
||||
ids = list(set([x.parent_id.id for x in parents]))
|
||||
if not level:
|
||||
raise exceptions.Warning(
|
||||
_('Error ! You can not create recursive categories.'))
|
||||
level -= 1
|
||||
|
||||
name = fields.Char('Name', required=True, translate=True)
|
||||
parent_id = fields.Many2one(
|
||||
comodel_name='qc.test.category', string='Parent category', select=True)
|
||||
complete_name = fields.Char(
|
||||
compute="_get_complete_name", string='Full name')
|
||||
child_ids = fields.One2many(
|
||||
comodel_name='qc.test.category', inverse_name='parent_id',
|
||||
string='Child categories')
|
||||
active = fields.Boolean(
|
||||
string='Active', default=True,
|
||||
help="This field allows you to hide the category without removing it.")
|
||||
25
quality_control/models/qc_trigger.py
Normal file
25
quality_control/models/qc_trigger.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import fields, models
|
||||
|
||||
|
||||
class QcTrigger(models.Model):
|
||||
_name = 'qc.trigger'
|
||||
_description = 'Quality control trigger'
|
||||
|
||||
name = fields.Char(string='Name', required=True, select=True,
|
||||
translate=True)
|
||||
active = fields.Boolean(string='Active', default=True)
|
||||
company_id = fields.Many2one(
|
||||
comodel_name='res.company', string='Company',
|
||||
default=lambda self: self.env['res.company']._company_default_get(
|
||||
'qc.test'))
|
||||
partner_selectable = fields.Boolean(
|
||||
string='Selectable by partner', default=False, readonly=True,
|
||||
help='This technical field is to allow to filter by partner in'
|
||||
' triggers')
|
||||
107
quality_control/models/qc_trigger_line.py
Normal file
107
quality_control/models/qc_trigger_line.py
Normal file
@@ -0,0 +1,107 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2010 NaN Projectes de Programari Lliure, S.L.
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from openerp import fields, models
|
||||
|
||||
|
||||
def _filter_trigger_lines(trigger_lines):
|
||||
filtered_trigger_lines = []
|
||||
unique_tests = []
|
||||
for trigger_line in trigger_lines:
|
||||
if trigger_line.test not in unique_tests:
|
||||
filtered_trigger_lines.append(trigger_line)
|
||||
unique_tests.append(trigger_line.test)
|
||||
return filtered_trigger_lines
|
||||
|
||||
|
||||
class QcTriggerLine(models.AbstractModel):
|
||||
_name = "qc.trigger.line"
|
||||
_description = "Abstract line for defining triggers"
|
||||
|
||||
trigger = fields.Many2one(comodel_name="qc.trigger", required=True)
|
||||
test = fields.Many2one(comodel_name="qc.test", required=True)
|
||||
user = fields.Many2one(
|
||||
comodel_name='res.users', string='Responsible',
|
||||
track_visibility='always', default=lambda self: self.env.user)
|
||||
partners = fields.Many2many(
|
||||
comodel_name='res.partner', string='Partners',
|
||||
help='If filled, the test will only be created when the action is done'
|
||||
' for one of the specified partners. If empty, the test will always be'
|
||||
' created.', domain="[('parent_id', '=', False)]")
|
||||
|
||||
def get_trigger_line_for_product(self, trigger, product, partner=False):
|
||||
"""Overridable method for getting trigger_line associated to a product.
|
||||
Each inherited model will complete this module to make the search by
|
||||
product, template or category.
|
||||
:param trigger: Trigger instance.
|
||||
:param product: Product instance.
|
||||
:return: Set of trigger_lines that matches to the given product and
|
||||
trigger.
|
||||
"""
|
||||
return set()
|
||||
|
||||
|
||||
class QcTriggerProductCategoryLine(models.Model):
|
||||
_inherit = "qc.trigger.line"
|
||||
_name = "qc.trigger.product_category_line"
|
||||
|
||||
product_category = fields.Many2one(comodel_name="product.category")
|
||||
|
||||
def get_trigger_line_for_product(self, trigger, product, partner=False):
|
||||
trigger_lines = super(
|
||||
QcTriggerProductCategoryLine,
|
||||
self).get_trigger_line_for_product(trigger, product,
|
||||
partner=partner)
|
||||
category = product.categ_id
|
||||
while category:
|
||||
for trigger_line in category.qc_triggers.filtered(
|
||||
lambda r: r.trigger == trigger and (
|
||||
not r.partners or not partner or
|
||||
partner.commercial_partner_id in r.partners)):
|
||||
trigger_lines.add(trigger_line)
|
||||
category = category.parent_id
|
||||
return trigger_lines
|
||||
|
||||
|
||||
class QcTriggerProductTemplateLine(models.Model):
|
||||
_inherit = "qc.trigger.line"
|
||||
_name = "qc.trigger.product_template_line"
|
||||
|
||||
product_template = fields.Many2one(comodel_name="product.template")
|
||||
|
||||
def get_trigger_line_for_product(self, trigger, product, partner=False):
|
||||
trigger_lines = super(
|
||||
QcTriggerProductTemplateLine,
|
||||
self).get_trigger_line_for_product(trigger, product,
|
||||
partner=partner)
|
||||
for trigger_line in product.product_tmpl_id.qc_triggers.filtered(
|
||||
lambda r: r.trigger == trigger and (
|
||||
not r.partners or not partner or
|
||||
partner.commercial_partner_id in r.partners) and
|
||||
r.test.active):
|
||||
trigger_lines.add(trigger_line)
|
||||
return trigger_lines
|
||||
|
||||
|
||||
class QcTriggerProductLine(models.Model):
|
||||
_inherit = "qc.trigger.line"
|
||||
_name = "qc.trigger.product_line"
|
||||
|
||||
product = fields.Many2one(comodel_name="product.product")
|
||||
|
||||
def get_trigger_line_for_product(self, trigger, product, partner=False):
|
||||
trigger_lines = super(
|
||||
QcTriggerProductLine,
|
||||
self).get_trigger_line_for_product(trigger, product,
|
||||
partner=partner)
|
||||
for trigger_line in product.qc_triggers.filtered(
|
||||
lambda r: r.trigger == trigger and (
|
||||
not r.partners or not partner or
|
||||
partner.commercial_partner_id in r.partners) and
|
||||
r.test.active):
|
||||
trigger_lines.add(trigger_line)
|
||||
return trigger_lines
|
||||
18
quality_control/security/ir.model.access.csv
Normal file
18
quality_control/security/ir.model.access.csv
Normal file
@@ -0,0 +1,18 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_user_qc_inspection,qc_inspection,quality_control.model_qc_inspection,quality_control.group_quality_control_user,1,1,1,1
|
||||
access_user_qc_inspection_line,qc_inspection_line,quality_control.model_qc_inspection_line,quality_control.group_quality_control_user,1,1,1,1
|
||||
access_user_qc_test,qc_test user,quality_control.model_qc_test,quality_control.group_quality_control_user,1,0,0,0
|
||||
access_user_qc_test_question,qc_test_question user,quality_control.model_qc_test_question,quality_control.group_quality_control_user,1,0,0,0
|
||||
access_user_qc_test_question_value,qc_test_question_value_user,quality_control.model_qc_test_question_value,quality_control.group_quality_control_user,1,0,0,0
|
||||
access_manager_qc_test,qc_test manager,quality_control.model_qc_test,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_test_question,qc_test_question manager,quality_control.model_qc_test_question,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_test_question_value,qc_test_question_value,quality_control.model_qc_test_question_value,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_test_category,qc_test_category,quality_control.model_qc_test_category,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_trigger_user,qc_trigger user,quality_control.model_qc_trigger,quality_control.group_quality_control_user,1,0,0,0
|
||||
access_manager_qc_trigger_manager,qc_trigger manager,quality_control.model_qc_trigger,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_trigger_product_category_line_user,qc_trigger product_category line user,quality_control.model_qc_trigger_product_category_line,quality_control.group_quality_control_user,1,0,0,0
|
||||
access_manager_qc_trigger_product_category_line_manager,qc_trigger product_category line manager,quality_control.model_qc_trigger_product_category_line,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_trigger_product_template_line_user,qc_trigger product_template line user,quality_control.model_qc_trigger_product_template_line,,1,0,0,0
|
||||
access_manager_qc_trigger_product_template_line_manager,qc_trigger product_template line manager,quality_control.model_qc_trigger_product_template_line,quality_control.group_quality_control_manager,1,1,1,1
|
||||
access_manager_qc_trigger_product_line_user,qc_trigger product line user,quality_control.model_qc_trigger_product_line,,1,0,0,0
|
||||
access_manager_qc_trigger_product_line_manager,qc_trigger product line manager,quality_control.model_qc_trigger_product_line,quality_control.group_quality_control_manager,1,1,1,1
|
||||
|
43
quality_control/security/quality_control_security.xml
Normal file
43
quality_control/security/quality_control_security.xml
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
<record model="ir.module.category" id="module_category_quality_control">
|
||||
<field name="name">Quality control</field>
|
||||
</record>
|
||||
|
||||
<record id="group_quality_control_user" model="res.groups">
|
||||
<field name="name">User</field>
|
||||
<field name="category_id" ref="module_category_quality_control"/>
|
||||
</record>
|
||||
|
||||
<record id="group_quality_control_manager" model="res.groups">
|
||||
<field name="name">Manager</field>
|
||||
<field name="category_id" ref="module_category_quality_control"/>
|
||||
<field name="implied_ids" eval="[(4, ref('group_quality_control_user'))]"/>
|
||||
<field name="users" eval="[(4, ref('base.user_root'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="qc_test_multi_company_rule" model="ir.rule">
|
||||
<field name="name">Quality control test multi-company</field>
|
||||
<field name="model_id" ref="model_qc_test"/>
|
||||
<field name="global" eval="True"/>
|
||||
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
||||
</record>
|
||||
|
||||
<record id="qc_inspection_multi_company_rule" model="ir.rule">
|
||||
<field name="name">Quality control inspection multi-company</field>
|
||||
<field name="model_id" ref="model_qc_inspection"/>
|
||||
<field name="global" eval="True"/>
|
||||
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
||||
</record>
|
||||
|
||||
<record id="qc_trigger_multi_company_rule" model="ir.rule">
|
||||
<field name="name">Quality control trigger multi-company</field>
|
||||
<field name="model_id" ref="model_qc_trigger"/>
|
||||
<field name="global" eval="True"/>
|
||||
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
BIN
quality_control/static/description/icon.png
Normal file
BIN
quality_control/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.0 KiB |
95
quality_control/static/description/icon.svg
Normal file
95
quality_control/static/description/icon.svg
Normal file
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r"
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
sodipodi:docname="icon.svg"
|
||||
inkscape:export-filename="icon.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45">
|
||||
<metadata
|
||||
id="metadata8">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
showguides="false"
|
||||
inkscape:zoom="2.6074563"
|
||||
inkscape:cx="97.374622"
|
||||
inkscape:cy="132.02575"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
style="fill:#3b4552;fill-opacity:1;stroke:none;stroke-width:1.93276381"
|
||||
d="m 211.33966,96.067802 c 0,5.992928 7.91763,11.579358 6.74724,17.584548 -1.17039,6.00519 -11.48804,8.10481 -13.8219,13.58637 -2.33386,5.48156 3.54667,14.45202 0.2853,19.35834 -3.26137,4.90632 -13.42612,3.16349 -17.72981,7.43515 -4.30369,4.27166 -2.84179,14.82951 -7.85007,18.16415 -5.00827,3.33464 -14.16074,-2.55764 -19.80601,-0.26061 -5.64527,2.29703 -8.12649,12.89205 -13.9027,13.97052 -5.77621,1.07847 -11.48439,-7.0737 -17.64561,-7.0737 -6.16121,0 -12.25109,7.92446 -18.34832,6.62698 -6.09723,-1.29748 -7.59194,-10.41046 -12.762714,-12.66396 -5.170777,-2.2535 -13.376422,2.91752 -18.36,-0.36786 -4.983578,-3.28538 -5.262182,-14.36977 -9.53734,-18.79261 -4.275158,-4.42285 -12.851882,-1.69906 -16.45127,-7.12771 -3.599388,-5.42865 1.214828,-13.41741 -0.770599,-19.03959 -1.985426,-5.62218 -11.704615,-8.69661 -12.692518,-13.74392 -0.987903,-5.04731 7.500299,-12.47926 7.500299,-18.614887 0,-6.135628 -8.588091,-11.321696 -7.392633,-17.238661 C 39.996464,71.953386 50.643513,69.536 52.904546,64.153032 55.165579,58.770064 48.868664,50.58811 52.15073,45.63683 c 3.282066,-4.951281 13.747588,-4.272318 18.076133,-8.582161 4.328545,-4.309842 2.720858,-13.899039 7.694198,-17.198646 4.97334,-3.299607 13.104622,1.205446 18.503316,-1.022051 5.398693,-2.227496 7.894433,-11.1597399 13.714143,-12.3387556 5.81971,-1.1790158 12.1411,6.0407876 18.24461,6.0407876 6.10351,-1e-6 11.68483,-7.3111077 17.42643,-6.2026403 5.7416,1.1084674 8.13974,10.5614813 13.80595,12.8572833 5.6662,2.295802 14.94429,-2.23592 19.8907,1.108078 4.94641,3.343998 2.48246,11.892283 6.64749,15.99066 4.16503,4.098377 14.62827,3.666275 18.01677,8.682357 3.3885,5.016082 -2.02844,13.500558 0.32346,19.125397 2.3519,5.62484 12.47407,8.60159 13.61721,14.510953 1.14314,5.909363 -6.77148,11.466779 -6.77148,17.45971 z"
|
||||
id="circle3368"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" />
|
||||
<circle
|
||||
r="63.531616"
|
||||
cy="96.067802"
|
||||
cx="128.38313"
|
||||
id="circle3346"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.34354317" />
|
||||
<circle
|
||||
style="fill:#2b78c2;fill-opacity:1;stroke:none;stroke-width:1.09952056"
|
||||
id="path3342"
|
||||
cx="128.38313"
|
||||
cy="96.067802"
|
||||
r="51.992611" />
|
||||
<path
|
||||
style="fill:#2b78c2;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 83.989904,184.28259 8.053826,-1.24642 c 9.05399,16.12754 16.49528,14.24662 24.0656,13.80656 l -10.83431,53.1169 -14.190079,-13.51892 -18.984019,4.79394 z"
|
||||
id="path3338"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3340"
|
||||
d="m 171.81497,184.37847 -8.05383,-1.24642 c -9.05399,16.12754 -16.49528,14.24662 -24.0656,13.80656 l 10.83431,53.1169 14.19008,-13.51892 18.98402,4.79394 z"
|
||||
style="fill:#2b78c2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:transform-center-x="-0.016606677"
|
||||
inkscape:transform-center-y="-4.1513637"
|
||||
d="m 147.10763,127.15966 -18.87851,-10.66672 -19.29578,10.61355 c -2.14644,1.18064 -5.60088,-1.48065 -5.11608,-3.87048 l 4.26518,-21.02547 -15.410855,-14.46528 c -1.952657,-1.832846 -1.388891,-6.342484 1.848072,-6.713162 l 20.920483,-2.395688 9.61304,-20.440593 c 0.75725,-1.610169 4.6613,-2.921345 5.96156,-0.04186 l 9.11939,20.195236 22.68645,2.860817 c 3.08062,0.388473 2.79381,4.411669 1.38356,5.705416 l -16.16599,14.830394 4.28375,22.429 c 0.38417,2.01144 -2.29024,4.63697 -5.21427,2.98484 z"
|
||||
id="path3350"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="scsscsscsscsscss" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
5
quality_control/tests/__init__.py
Normal file
5
quality_control/tests/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# (c) 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from . import test_quality_control
|
||||
206
quality_control/tests/test_quality_control.py
Normal file
206
quality_control/tests/test_quality_control.py
Normal file
@@ -0,0 +1,206 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# (c) 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from openerp.tests.common import TransactionCase
|
||||
from openerp import exceptions
|
||||
from ..models.qc_trigger_line import\
|
||||
_filter_trigger_lines
|
||||
|
||||
|
||||
class TestQualityControl(TransactionCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestQualityControl, self).setUp()
|
||||
self.inspection_model = self.env['qc.inspection']
|
||||
self.category_model = self.env['qc.test.category']
|
||||
self.question_model = self.env['qc.test.question']
|
||||
self.wizard_model = self.env['qc.inspection.set.test']
|
||||
self.qc_trigger = self.env['qc.trigger'].create({
|
||||
'name': 'Test Trigger',
|
||||
'active': True,
|
||||
})
|
||||
self.test = self.env.ref('quality_control.qc_test_1')
|
||||
self.val_ok = self.env.ref('quality_control.qc_test_question_value_1')
|
||||
self.val_ko = self.env.ref('quality_control.qc_test_question_value_2')
|
||||
self.qn_question = self.env.ref('quality_control.qc_test_question_2')
|
||||
self.cat_generic = self.env.ref(
|
||||
'quality_control.qc_test_template_category_generic')
|
||||
self.product = self.env.ref('product.product_product_11')
|
||||
inspection_lines = (
|
||||
self.inspection_model._prepare_inspection_lines(self.test))
|
||||
self.inspection1 = self.inspection_model.create({
|
||||
'name': 'Test Inspection',
|
||||
'inspection_lines': inspection_lines,
|
||||
})
|
||||
self.wizard = self.wizard_model.with_context(
|
||||
active_id=self.inspection1.id).create({
|
||||
'test': self.test.id,
|
||||
})
|
||||
self.wizard.action_create_test()
|
||||
self.inspection1.action_todo()
|
||||
|
||||
def test_inspection_correct(self):
|
||||
for line in self.inspection1.inspection_lines:
|
||||
if line.question_type == 'qualitative':
|
||||
line.qualitative_value = self.val_ok
|
||||
if line.question_type == 'quantitative':
|
||||
line.quantitative_value = 5.0
|
||||
self.inspection1.action_confirm()
|
||||
for line in self.inspection1.inspection_lines:
|
||||
self.assertTrue(
|
||||
line.success,
|
||||
'Incorrect state in inspection line %s' % line.name)
|
||||
self.assertTrue(
|
||||
self.inspection1.success,
|
||||
'Incorrect state in inspection %s' % self.inspection1.name)
|
||||
self.assertEquals(self.inspection1.state, 'success')
|
||||
self.inspection1.action_approve()
|
||||
self.assertEquals(self.inspection1.state, 'success')
|
||||
|
||||
def test_inspection_incorrect(self):
|
||||
for line in self.inspection1.inspection_lines:
|
||||
if line.question_type == 'qualitative':
|
||||
line.qualitative_value = self.val_ko
|
||||
if line.question_type == 'quantitative':
|
||||
line.quantitative_value = 15.0
|
||||
self.inspection1.action_confirm()
|
||||
for line in self.inspection1.inspection_lines:
|
||||
self.assertFalse(
|
||||
line.success,
|
||||
'Incorrect state in inspection line %s' % line.name)
|
||||
self.assertFalse(
|
||||
self.inspection1.success,
|
||||
'Incorrect state in inspection %s' % self.inspection1.name)
|
||||
self.assertEquals(self.inspection1.state, 'waiting')
|
||||
self.inspection1.action_approve()
|
||||
self.assertEquals(self.inspection1.state, 'failed')
|
||||
|
||||
def test_actions_errors(self):
|
||||
inspection2 = self.inspection1.copy()
|
||||
inspection2.action_draft()
|
||||
inspection2.write({'test': False})
|
||||
with self.assertRaises(exceptions.Warning):
|
||||
inspection2.action_todo()
|
||||
inspection3 = self.inspection1.copy()
|
||||
inspection3.write({
|
||||
'inspection_lines':
|
||||
self.inspection_model._prepare_inspection_lines(inspection3.test)
|
||||
})
|
||||
for line in inspection3.inspection_lines:
|
||||
if line.question_type == 'quantitative':
|
||||
line.quantitative_value = 15.0
|
||||
with self.assertRaises(exceptions.Warning):
|
||||
inspection3.action_confirm()
|
||||
inspection4 = self.inspection1.copy()
|
||||
inspection4.write({
|
||||
'inspection_lines':
|
||||
self.inspection_model._prepare_inspection_lines(inspection4.test)
|
||||
})
|
||||
for line in inspection4.inspection_lines:
|
||||
if line.question_type == 'quantitative':
|
||||
line.write({
|
||||
'uom_id': False,
|
||||
'quantitative_value': 15.0,
|
||||
})
|
||||
elif line.question_type == 'qualitative':
|
||||
line.qualitative_value = self.val_ok
|
||||
with self.assertRaises(exceptions.Warning):
|
||||
inspection4.action_confirm()
|
||||
|
||||
def test_categories(self):
|
||||
category1 = self.category_model.create({
|
||||
'name': 'Category ONE',
|
||||
})
|
||||
category2 = self.category_model.create({
|
||||
'name': 'Category TWO',
|
||||
'parent_id': category1.id,
|
||||
})
|
||||
self.assertEquals(
|
||||
category2.complete_name,
|
||||
'%s / %s' % (category1.name, category2.name),
|
||||
'Something went wrong when computing complete name')
|
||||
with self.assertRaises(exceptions.ValidationError):
|
||||
category1.parent_id = category2.id
|
||||
|
||||
def test_get_qc_trigger_product(self):
|
||||
self.test.write({
|
||||
'fill_correct_values': True,
|
||||
})
|
||||
trigger_lines = set()
|
||||
self.product.write({
|
||||
'qc_triggers': [(0, 0, {'trigger': self.qc_trigger.id,
|
||||
'test': self.test.id})],
|
||||
})
|
||||
self.product.product_tmpl_id.write({
|
||||
'qc_triggers': [(0, 0, {'trigger': self.qc_trigger.id,
|
||||
'test': self.test.id})],
|
||||
})
|
||||
self.product.categ_id.write({
|
||||
'qc_triggers': [(0, 0, {'trigger': self.qc_trigger.id,
|
||||
'test': self.test.id})],
|
||||
})
|
||||
for model in ['qc.trigger.product_category_line',
|
||||
'qc.trigger.product_template_line',
|
||||
'qc.trigger.product_line']:
|
||||
trigger_lines = trigger_lines.union(
|
||||
self.env[model].get_trigger_line_for_product(
|
||||
self.qc_trigger, self.product))
|
||||
self.assertEquals(len(trigger_lines), 3)
|
||||
filtered_trigger_lines = _filter_trigger_lines(trigger_lines)
|
||||
self.assertEquals(len(filtered_trigger_lines), 1)
|
||||
for trigger_line in filtered_trigger_lines:
|
||||
inspection = self.inspection_model._make_inspection(
|
||||
self.product, trigger_line)
|
||||
self.assertEquals(inspection.state, 'ready')
|
||||
self.assertTrue(inspection.auto_generated)
|
||||
self.assertEquals(inspection.test, self.test)
|
||||
for line in inspection.inspection_lines:
|
||||
if line.question_type == 'qualitative':
|
||||
self.assertEquals(line.qualitative_value, self.val_ok)
|
||||
elif line.question_type == 'quantitative':
|
||||
self.assertEquals(
|
||||
round(line.quantitative_value, 2), round((
|
||||
self.qn_question.min_value +
|
||||
self.qn_question.max_value) * 0.5, 2))
|
||||
|
||||
def test_qc_inspection_not_draft_unlink(self):
|
||||
with self.assertRaises(exceptions.Warning):
|
||||
self.inspection1.unlink()
|
||||
inspection2 = self.inspection1.copy()
|
||||
inspection2.action_cancel()
|
||||
self.assertEquals(inspection2.state, 'canceled')
|
||||
inspection2.action_draft()
|
||||
self.assertEquals(inspection2.state, 'draft')
|
||||
inspection2.unlink()
|
||||
|
||||
def test_qc_inspection_auto_generate_unlink(self):
|
||||
inspection2 = self.inspection1.copy()
|
||||
inspection2.write({
|
||||
'auto_generated': True,
|
||||
})
|
||||
with self.assertRaises(exceptions.Warning):
|
||||
inspection2.unlink()
|
||||
|
||||
def test_qc_inspection_product(self):
|
||||
self.inspection1.write({
|
||||
'object_id': '%s,%d' % (self.product._model, self.product.id),
|
||||
})
|
||||
self.assertEquals(self.inspection1.product,
|
||||
self.product)
|
||||
|
||||
def test_qc_test_question_constraints(self):
|
||||
with self.assertRaises(exceptions.ValidationError):
|
||||
self.question_model.create({
|
||||
'name': 'Quantitative Question',
|
||||
'type': 'quantitative',
|
||||
'min_value': 1.0,
|
||||
'max_value': 0.0,
|
||||
})
|
||||
with self.assertRaises(exceptions.ValidationError):
|
||||
self.question_model.create({
|
||||
'name': 'Qualitative Question',
|
||||
'type': 'qualitative',
|
||||
'ql_values': [(0, 0, {'name': 'Qualitative answer',
|
||||
'ok': False})],
|
||||
})
|
||||
24
quality_control/views/product_category_view.xml
Normal file
24
quality_control/views/product_category_view.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="product_category_qc_form_view">
|
||||
<field name="name">product.category.qc</field>
|
||||
<field name="model">product.category</field>
|
||||
<field name="inherit_id" ref="product.product_category_form_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="first" position="after">
|
||||
<group name="qc" string="Quality control">
|
||||
<field name="qc_triggers" nolabel="1">
|
||||
<tree string="Quality control triggers" editable="bottom">
|
||||
<field name="trigger" widget="selection" />
|
||||
<field name="test" />
|
||||
<field name="user" />
|
||||
<field name="partners" widget="many2many_tags" />
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
24
quality_control/views/product_template_view.xml
Normal file
24
quality_control/views/product_template_view.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="product_template_qc_form_view">
|
||||
<field name="name">product.template.qc</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="product.product_template_form_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//page[2]" position="inside">
|
||||
<group name="qc" string="Quality control">
|
||||
<field name="qc_triggers" nolabel="1">
|
||||
<tree string="Quality control triggers" editable="bottom">
|
||||
<field name="trigger" widget="selection"/>
|
||||
<field name="test"/>
|
||||
<field name="user" />
|
||||
<field name="partners" widget="many2many_tags" />
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
253
quality_control/views/qc_inspection_view.xml
Normal file
253
quality_control/views/qc_inspection_view.xml
Normal file
@@ -0,0 +1,253 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_form_view">
|
||||
<field name="name">qc.inspection.form</field>
|
||||
<field name="model">qc.inspection</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Inspection">
|
||||
<header>
|
||||
<button name="action_draft"
|
||||
type="object"
|
||||
attrs="{'invisible': [('state', '!=', 'canceled')]}"
|
||||
string="Draft" />
|
||||
<button name="action_todo"
|
||||
type="object"
|
||||
class="oe_highlight"
|
||||
states="draft"
|
||||
string="Mark todo" />
|
||||
<button name="action_confirm"
|
||||
type="object"
|
||||
class="oe_highlight"
|
||||
states="ready"
|
||||
string="Confirm"
|
||||
icon="gtk-ok" />
|
||||
<button name="action_approve"
|
||||
type="object"
|
||||
states="waiting"
|
||||
class="oe_highlight"
|
||||
groups="quality_control.group_quality_control_manager"
|
||||
string="Approve" />
|
||||
<button name="action_cancel"
|
||||
type="object"
|
||||
attrs="{'invisible': [('state', 'not in', ['waiting', 'ready', 'failed', 'success'])]}"
|
||||
string="Cancel"
|
||||
icon="gtk-cancel" />
|
||||
<field name="state"
|
||||
widget="statusbar"
|
||||
statusbar_visible="draft,waiting,success"
|
||||
statusbar_colors='{"success": "blue", "failed": "red"}' />
|
||||
</header>
|
||||
<sheet>
|
||||
<div class="oe_right oe_button_box" name="buttons">
|
||||
<button class="oe_inline oe_stat_button"
|
||||
type="action"
|
||||
name="%(action_qc_inspection_set_test)d"
|
||||
icon="fa-bookmark-o"
|
||||
states="draft"
|
||||
string="Set test" />
|
||||
</div>
|
||||
<h1>
|
||||
<label string="Inspection "/>
|
||||
<field name="name" class="oe_inline"/>
|
||||
</h1>
|
||||
<group>
|
||||
<group>
|
||||
<field name="test" />
|
||||
<field name="user" />
|
||||
<field name="object_id" />
|
||||
<field name="qty" />
|
||||
<field name="product" />
|
||||
</group>
|
||||
<group>
|
||||
<field name="date" />
|
||||
<field name="success" />
|
||||
<field name="auto_generated" />
|
||||
</group>
|
||||
</group>
|
||||
<notebook>
|
||||
<page string="Questions">
|
||||
<field name="inspection_lines" nolabel="1">
|
||||
<tree string="Inspection lines" editable="top" delete="false" create="false">
|
||||
<field name="name" />
|
||||
<field name="question_type" />
|
||||
<field name="possible_ql_values" invisible="1" />
|
||||
<field name="qualitative_value"
|
||||
attrs="{'readonly': [('question_type', '=', 'quantitative')]}" />
|
||||
<field name="quantitative_value"
|
||||
attrs="{'readonly': [('question_type', '=', 'qualitative')]}" />
|
||||
<field name="uom_id"
|
||||
groups="product.group_uom"
|
||||
attrs="{'readonly': [('question_type', '=', 'qualitative')]}" />
|
||||
<field name="test_uom_category" invisible="1"/>
|
||||
<field name="valid_values" />
|
||||
<field name="success" />
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
<page string="Notes">
|
||||
<group string="Internal notes" >
|
||||
<field name="internal_notes"
|
||||
nolabel="1" />
|
||||
</group>
|
||||
<group string="External notes" >
|
||||
<field name="external_notes"
|
||||
nolabel="1" />
|
||||
</group>
|
||||
</page>
|
||||
</notebook>
|
||||
</sheet>
|
||||
<div class="oe_chatter">
|
||||
<field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
|
||||
<field name="message_ids" widget="mail_thread"/>
|
||||
</div>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_tree_view">
|
||||
<field name="name">qc.inspection.tree</field>
|
||||
<field name="model">qc.inspection</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Inspections">
|
||||
<field name="name" />
|
||||
<field name="user" />
|
||||
<field name="test" />
|
||||
<field name="qty" />
|
||||
<field name="product" />
|
||||
<field name="success" />
|
||||
<field name="state" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_search_view">
|
||||
<field name="name">qc.inspection.search</field>
|
||||
<field name="model">qc.inspection</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search inspection">
|
||||
<group>
|
||||
<field name="name" />
|
||||
<field name="user" />
|
||||
<field name="object_id" />
|
||||
<field name="product" />
|
||||
<field name="test" />
|
||||
</group>
|
||||
<newline />
|
||||
<filter string="Correct"
|
||||
domain="[('success', '=', True)]"/>
|
||||
<filter string="Incorrect"
|
||||
domain="[('success', '=', False)]"/>
|
||||
<newline />
|
||||
<group expand="0" string="Group by...">
|
||||
<filter string="Reference"
|
||||
domain="[]"
|
||||
context="{'group_by': 'object_id'}" />
|
||||
<filter string="Test"
|
||||
domain="[]"
|
||||
context="{'group_by': 'test'}" />
|
||||
<filter string="Responsible"
|
||||
domain="[]"
|
||||
context="{'group_by': 'user'}" />
|
||||
<filter string="Product"
|
||||
domain="[]"
|
||||
context="{'group_by': 'product'}" />
|
||||
<filter string="State"
|
||||
domain="[]"
|
||||
context="{'group_by': 'state'}" />
|
||||
<filter string="Success"
|
||||
domain="[]"
|
||||
context="{'group_by': 'success'}" />
|
||||
<filter string="Auto-generated"
|
||||
domain="[]"
|
||||
context="{'group_by': 'auto_generated'}" />
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.act_window" id="action_qc_inspection">
|
||||
<field name="name">Inspections</field>
|
||||
<field name="res_model">qc.inspection</field>
|
||||
<field name="view_type">form</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
</record>
|
||||
|
||||
<menuitem name="Inspections"
|
||||
parent="qc_inspection_menu_parent"
|
||||
id="qc_inspection_menu"
|
||||
action="action_qc_inspection" />
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_line_tree_view">
|
||||
<field name="name">qc.inspection.line.tree</field>
|
||||
<field name="model">qc.inspection.line</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Inspection lines" delete="false" create="false" colors="red: success==False">
|
||||
<field name="inspection_id" />
|
||||
<field name="product" />
|
||||
<field name="name" />
|
||||
<field name="question_type" />
|
||||
<field name="possible_ql_values" invisible="1" />
|
||||
<field name="qualitative_value"
|
||||
attrs="{'readonly': [('question_type', '=', 'quantitative')]}" />
|
||||
<field name="quantitative_value"
|
||||
attrs="{'readonly': [('question_type', '=', 'qualitative')]}" />
|
||||
<field name="uom_id"
|
||||
groups="product.group_uom"
|
||||
attrs="{'readonly': [('question_type', '=', 'qualitative')]}" />
|
||||
<field name="test_uom_category" invisible="1"/>
|
||||
<field name="valid_values" />
|
||||
<field name="success" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_line_search_view">
|
||||
<field name="name">qc.inspection.line.search</field>
|
||||
<field name="model">qc.inspection.line</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search inspection line">
|
||||
<group>
|
||||
<field name="name" />
|
||||
<field name="inspection_id" />
|
||||
<field name="product" />
|
||||
<field name="success" />
|
||||
</group>
|
||||
<newline />
|
||||
<filter string="Correct"
|
||||
domain="[('success', '=', True)]"/>
|
||||
<filter string="Incorrect"
|
||||
domain="[('success', '=', False)]"/>
|
||||
<newline />
|
||||
<group expand="0" string="Group by...">
|
||||
<filter string="Inspection"
|
||||
domain="[]"
|
||||
context="{'group_by': 'inspection_id'}" />
|
||||
<filter string="Product"
|
||||
domain="[]"
|
||||
context="{'group_by': 'product'}" />
|
||||
<filter string="Question"
|
||||
domain="[]"
|
||||
context="{'group_by': 'name'}" />
|
||||
<filter string="Success"
|
||||
domain="[]"
|
||||
context="{'group_by': 'success'}" />
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.act_window" id="action_qc_inspection_line">
|
||||
<field name="name">Inspection lines</field>
|
||||
<field name="res_model">qc.inspection.line</field>
|
||||
<field name="view_type">form</field>
|
||||
<field name="view_mode">tree</field>
|
||||
</record>
|
||||
|
||||
<menuitem name="Inspection lines"
|
||||
parent="qc_inspection_menu_parent"
|
||||
id="qc_inspection_lines_menu"
|
||||
action="action_qc_inspection_line" />
|
||||
|
||||
</odoo>
|
||||
|
||||
20
quality_control/views/qc_menus.xml
Normal file
20
quality_control/views/qc_menus.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<menuitem name="Quality control"
|
||||
id="qc_menu"
|
||||
groups="group_quality_control_user"
|
||||
sequence="40" />
|
||||
|
||||
<menuitem name="Inspections"
|
||||
parent="qc_menu"
|
||||
id="qc_inspection_menu_parent"
|
||||
sequence="10" />
|
||||
|
||||
<menuitem parent="qc_menu"
|
||||
name="Tests"
|
||||
id="qc_menu_test_parent"
|
||||
groups="group_quality_control_manager"
|
||||
sequence="20" />
|
||||
|
||||
</odoo>
|
||||
31
quality_control/views/qc_test_category_view.xml
Normal file
31
quality_control/views/qc_test_category_view.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="qc_test_category_tree_view">
|
||||
<field name="name">qc.test.category.tree</field>
|
||||
<field name="model">qc.test.category</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Test categories" editable="bottom">
|
||||
<field name="complete_name"/>
|
||||
<field name="name"/>
|
||||
<field name="parent_id"/>
|
||||
<field name="active"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.act_window" id="action_qc_test_category">
|
||||
<field name="name">Test categories</field>
|
||||
<field name="res_model">qc.test.category</field>
|
||||
<field name="view_type">form</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
</record>
|
||||
|
||||
<menuitem name="Test categories"
|
||||
parent="qc_menu_test_parent"
|
||||
id="qc_test_category_menu"
|
||||
action="action_qc_test_category"
|
||||
groups="group_quality_control_manager"
|
||||
sequence="10" />
|
||||
|
||||
</odoo>
|
||||
125
quality_control/views/qc_test_view.xml
Normal file
125
quality_control/views/qc_test_view.xml
Normal file
@@ -0,0 +1,125 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="qc_test_form_view">
|
||||
<field name="name">qc.test.form</field>
|
||||
<field name="model">qc.test</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Test">
|
||||
<sheet>
|
||||
<label for="name" class="oe_edit_only"/>
|
||||
<h1>
|
||||
<field name="name" class="oe_inline"/>
|
||||
</h1>
|
||||
<group>
|
||||
<group>
|
||||
<field name="type" />
|
||||
<field name="object_id"
|
||||
attrs="{'invisible': [('type','=','generic')]}"/>
|
||||
<field name="active" />
|
||||
</group>
|
||||
<group>
|
||||
<field name="category" />
|
||||
<field name="fill_correct_values" />
|
||||
<field name="company_id" groups="base.group_multi_company"/>
|
||||
</group>
|
||||
</group>
|
||||
<field name="test_lines" nolabel="1" >
|
||||
<tree string="Questions">
|
||||
<field name="sequence" widget="handle"/>
|
||||
<field name="name" />
|
||||
<field name="type" />
|
||||
<field name="min_value" />
|
||||
<field name="max_value" />
|
||||
<field name="uom_id" />
|
||||
<field name="ql_values" />
|
||||
</tree>
|
||||
</field>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_test_tree_view">
|
||||
<field name="name">qc.test.tree</field>
|
||||
<field name="model">qc.test</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Tests">
|
||||
<field name="name" />
|
||||
<field name="category" />
|
||||
<field name="type" />
|
||||
<field name="object_id" />
|
||||
<field name="company_id" groups="base.group_multi_company"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.act_window" id="action_qc_test">
|
||||
<field name="name">Tests</field>
|
||||
<field name="res_model">qc.test</field>
|
||||
<field name="view_type">form</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_test_question_form_view">
|
||||
<field name="name">qc.test.question.form</field>
|
||||
<field name="model">qc.test.question</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Test question">
|
||||
<label for="name" class="oe_edit_only" />
|
||||
<h1>
|
||||
<field name="name" class="oe_inline" />
|
||||
</h1>
|
||||
<group>
|
||||
<field name="sequence" />
|
||||
<field name="type" />
|
||||
</group>
|
||||
<group name="qualitative"
|
||||
string="Answers"
|
||||
colspan="4"
|
||||
attrs="{'invisible': [('type', '!=', 'qualitative')]}">
|
||||
<field name="ql_values"
|
||||
nolabel="1"
|
||||
attrs="{'required': [('type','=','qualitative')]}">
|
||||
<tree string="Question value" editable="bottom">
|
||||
<field name="name" />
|
||||
<field name="ok" />
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
<div name="quantitative"
|
||||
align="center"
|
||||
attrs="{'invisible': [('type', '!=', 'quantitative')]}" >
|
||||
<h1 name="quantitative-data">
|
||||
<span name="quantitative-interval" >
|
||||
<field name="min_value"
|
||||
class="oe_inline"
|
||||
nolabel="1"
|
||||
attrs="{'required': [('type',' =', 'quantitative')]}" />
|
||||
<span> - </span>
|
||||
<field name="max_value"
|
||||
class="oe_inline"
|
||||
nolabel="1"
|
||||
attrs="{'required': [('type', '=', 'quantitative')]}" />
|
||||
</span>
|
||||
<span name="quantitative-uom" >
|
||||
<field name="uom_id"
|
||||
class="oe_inline"
|
||||
nolabel="1"
|
||||
attrs="{'required': [('type', '=', 'quantitative')]}" />
|
||||
</span>
|
||||
</h1>
|
||||
</div>
|
||||
<field name="notes" />
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<menuitem name="Tests"
|
||||
parent="qc_menu_test_parent"
|
||||
id="qc_test_menu"
|
||||
action="action_qc_test"
|
||||
groups="group_quality_control_manager"
|
||||
sequence="20" />
|
||||
|
||||
</odoo>
|
||||
33
quality_control/views/qc_trigger_view.xml
Normal file
33
quality_control/views/qc_trigger_view.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="qc_trigger_form_view">
|
||||
<field name="name">qc.trigger.form</field>
|
||||
<field name="model">qc.trigger</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Quality control trigger">
|
||||
<group>
|
||||
<field name="name" />
|
||||
<field name="active" />
|
||||
<field name="partner_selectable" />
|
||||
</group>
|
||||
<group>
|
||||
<field name="company_id" groups="base.group_multi_company"/>
|
||||
</group>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_trigger_tree_view">
|
||||
<field name="name">qc.trigger.tree</field>
|
||||
<field name="model">qc.trigger</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Quality control triggers" editable="bottom">
|
||||
<field name="name" />
|
||||
<field name="company_id" groups="base.group_multi_company"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user