mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-24 05:22:05 +02:00
Initial commit: Accounting packages
This commit is contained in:
commit
4ef34c2317
2661 changed files with 1709616 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Accounting - MRP',
|
||||
'version': '1.0',
|
||||
'category': 'Manufacturing/Manufacturing',
|
||||
'summary': 'Analytic accounting in Manufacturing',
|
||||
'description': """
|
||||
Analytic Accounting in MRP
|
||||
==========================
|
||||
|
||||
* Cost structure report
|
||||
|
||||
Also, allows to compute the cost of the product based on its BoM, using the costs of its components and work center operations.
|
||||
It adds a button on the product itself but also an action in the list view of the products.
|
||||
If the automated inventory valuation is active, the necessary accounting entries will be created.
|
||||
|
||||
""",
|
||||
'website': 'https://www.odoo.com/app/manufacturing',
|
||||
'depends': ['mrp', 'stock_account'],
|
||||
"data": [
|
||||
'security/ir.model.access.csv',
|
||||
"views/product_views.xml",
|
||||
"views/mrp_bom_views.xml",
|
||||
"views/mrp_production_views.xml",
|
||||
"views/analytic_account_views.xml",
|
||||
],
|
||||
'demo': [
|
||||
'data/mrp_account_demo.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Binary file not shown.
|
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
<!-- Create extra MOs that will have stock.valuation.layers + can be used to populate reports -->
|
||||
<record id="mrp_production_drawer_2" model="mrp.production">
|
||||
<field name="product_id" ref="product.product_product_27"/>
|
||||
<field name="product_uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="product_qty">5</field>
|
||||
<field name="location_src_id" ref="stock.stock_location_stock"/>
|
||||
<field name="location_dest_id" ref="stock.stock_location_stock"/>
|
||||
<field name="bom_id" ref="mrp.mrp_bom_drawer"/>
|
||||
<field name="create_date" eval="(datetime.now() - relativedelta(weeks=2)).strftime('%Y-%m-%d %H:%M:%S')"/>
|
||||
<field name="date_planned_start" eval="(datetime.now() - relativedelta(weeks=2)).strftime('%Y-%m-%d %H:%M:%S')"/>
|
||||
</record>
|
||||
|
||||
<record id="mrp_production_drawer_3" model="mrp.production">
|
||||
<field name="product_id" ref="product.product_product_27"/>
|
||||
<field name="product_uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="product_qty">3</field>
|
||||
<field name="location_src_id" ref="stock.stock_location_stock"/>
|
||||
<field name="location_dest_id" ref="stock.stock_location_stock"/>
|
||||
<field name="bom_id" ref="mrp.mrp_bom_drawer"/>
|
||||
<field name="create_date" eval="(datetime.now() - relativedelta(weeks=1)).strftime('%Y-%m-%d %H:%M:%S')"/>
|
||||
<field name="date_planned_start" eval="(datetime.now() - relativedelta(weeks=1)).strftime('%Y-%m-%d %H:%M:%S')"/>
|
||||
</record>
|
||||
|
||||
<function model="mrp.production" name="action_confirm" eval="[[
|
||||
ref('mrp_account.mrp_production_drawer_2'),
|
||||
ref('mrp_account.mrp_production_drawer_3'),
|
||||
]]"/>
|
||||
|
||||
<function model="mrp.production" name="write">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_2')]"/>
|
||||
<value eval="{'qty_producing': 5, 'lot_producing_id': ref('mrp.lot_product_27_0')}"/>
|
||||
</function>
|
||||
<function model="mrp.production" name="write">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_3')]"/>
|
||||
<value eval="{'qty_producing': 3, 'lot_producing_id': ref('mrp.lot_product_27_0')}"/>
|
||||
</function>
|
||||
|
||||
<function model="mrp.production" name="action_assign">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_2'),
|
||||
ref('mrp_account.mrp_production_drawer_3')]"/>
|
||||
</function>
|
||||
|
||||
<function model="stock.move" name="write">
|
||||
<value model="stock.move" eval="obj().env['stock.move'].search([('raw_material_production_id', '=', obj().env.ref('mrp_account.mrp_production_drawer_2').id)]).ids"/>
|
||||
<value eval="{'quantity_done': 5}"/>
|
||||
</function>
|
||||
<function model="stock.move" name="write">
|
||||
<value model="stock.move" eval="obj().env['stock.move'].search([('raw_material_production_id', '=', obj().env.ref('mrp_account.mrp_production_drawer_3').id)]).ids"/>
|
||||
<value eval="{'quantity_done': 4}"/>
|
||||
</function>
|
||||
|
||||
<function model="mrp.production" name="_post_inventory">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_2'),
|
||||
ref('mrp_account.mrp_production_drawer_3')]"/>
|
||||
</function>
|
||||
|
||||
<function model="mrp.production" name="button_mark_done">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_2'),
|
||||
ref('mrp_account.mrp_production_drawer_3')]"/>
|
||||
</function>
|
||||
|
||||
<!-- Rewrite history so they finished in the past so it looks more interesting in graphs -->
|
||||
<function model="mrp.production" name="write">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_2')]"/>
|
||||
<value eval="{'date_finished': (datetime.now() - relativedelta(weeks=2)).strftime('%Y-%m-%d %H:%M:%S')}"/>
|
||||
</function>
|
||||
<function model="mrp.production" name="write">
|
||||
<value eval="[ref('mrp_account.mrp_production_drawer_3')]"/>
|
||||
<value eval="{'date_finished': (datetime.now() - relativedelta(weeks=1)).strftime('%Y-%m-%d %H:%M:%S')}"/>
|
||||
</function>
|
||||
</odoo>
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/af.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/af.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/am.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/am.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ar.po
Normal file
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ar.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "الحساب التحليلي"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "البند التحليلي"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"الحساب التحليلي الذي سوف تكون فيه قيود التكاليف والإيرادات للإدارة المالية "
|
||||
"لأمر التصنيع. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"الحساب التحليلي الذي سوف تكون فيه قيود التكاليف والإيرادات للإدارة المالية "
|
||||
"لأمر التصنيع. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "قائمة المواد"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "قوائم المواد "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "عدد قوائم المواد "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "الفئة "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "احتساب السعر من قائمة المواد"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"يحتسب سعر المنتج باستخدام المنتجات والعمليات في قائمة المواد ذات الصلة، "
|
||||
"للمنتجات المصنعة فقط."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "تم تسجيل التكلفة"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "تكلفة الوحدة الإضافية "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "عنصر اليومية"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "أمر التصنيع"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "أوامر التصنيع "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "عدد أوامر التصنيع "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "بند الحساب التحليلي لأمر التصنيع "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"يقوم بترحيل القيود التحليلية المحاسبية في الوقت الفعلي لكل من تكاليف "
|
||||
"المكونات والتكاليف التشغيلية. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "المنتج"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "متغير المنتج "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "أمر الانتاج"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "إظهار التقييم "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "حركة المخزون"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "قاعدة المخزون"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "التقييم "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "بند مركز العمل لأمر التصنيع "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "مركز العمل"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "استخدام مركز العمل "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "أمر العمل"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "عدد أوامر العمل "
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "أوامر العمل "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "سجل إنتاجية مركز العمل"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "مراكز العمل "
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
230
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/az.po
Normal file
230
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/az.po
Normal file
|
|
@ -0,0 +1,230 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitik Hesab"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitik Sətir"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Məhsul Resepti"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Materialların Spesifikasiyalarının Siyahıları"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kateqoriya"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Məhsul Reseptindan Qiymətin Hesablanması"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Yalnız istehsal olunan məhsullar üçün məhsullardan və əlaqədar məhsul "
|
||||
"reseptləri əməliyyatlarından istifadə edərək məhsulun qiymətini hesablayın."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Dəyəri Müəyyən Edilir"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Jurnal Sətirləri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "istehsal sifarişi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "İstehsal Sifarişləri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Məhsul"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Məhsul Çeşidi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "İstehsal Sifarişi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Qiymətləndirmə funksiyasını göstərin"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Stokun Hərəkəti"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Stok Qaydaları"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Qiymətləndirmə"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "İş Mərkəzi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "İş Mərkəzinin İstifadəsi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "İş Sifarişi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "İş Sifarişləri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "İş mərkəzinin Məhsuldarlığı Jurnalı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/be.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/be.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/bg.po
Normal file
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/bg.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Nikola Iliev, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Igor Sheludko <igor.sheludko@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Аналитична Сметка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Аналитичен Ред"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Фактура за покупка на материали"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Списъци с материали"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Категория"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Изчислете цената на продукта, като използвате продукти и операции от "
|
||||
"свързана фактура за покупка на материали, само за производствени продукти."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Документиран разход"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Счетоводна Операция"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Производствена поръчка "
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Производствена поръчка "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Продуктов вариант"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Производствена поръчка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Движение в склада"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Правило зс наличност"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Остойностяване"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Работен център"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Използване на работен център"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Работна поръчка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Работни поръчки"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Регистър за производителност на работен център"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
227
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/bs.po
Normal file
227
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/bs.po
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitički konto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitička stavka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Sastavnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Sastavnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Broj sastavnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Obračunaj cijenu iz sastavnice"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Trošak ubilježen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Dodatni trošak po jedinici"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Nalog za proizvodnju"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Nalozi za proizvodnju"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Broj proizvodnih naloga"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Analitička stavka PN"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Prikaži vrednovanje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Skladišni prijenos"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Skladišno pravilo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Vrednovanje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "RN stavka analitike"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Radni centar"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Iskoristivos radnog centra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Radni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Broj radnih naloga"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Radni nalozi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Zabilješke produktivnosti radnog centra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Radni centri"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Sirov] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[RC] %s"
|
||||
243
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ca.po
Normal file
243
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ca.po
Normal file
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# jabelchi, 2022
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2022
|
||||
# Arnau Ros, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Ivan Espinola, 2023
|
||||
# Harcogourmet, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Harcogourmet, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Compte analític"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Línia analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Compte analític en el qual es prendran les entrades de cost i ingressos"
|
||||
" lloc per a la gestió financera de l'ordre de fabricació."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Compte analític en el qual les entrades de cost i ingressos tindran lloc per"
|
||||
" a la gestió financera de l'ordre de fabricació."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Llista de material"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Llistes de materials"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Nombre de LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calcula el preu del LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcular el preu del producte utilitzant productes i operacions de la "
|
||||
"factura de materials relacionats, només per a productes manufacturats."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Cost registrat"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Cost addicional de la unitat"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunt comptable"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordre de fabricació"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Ordres de producció"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Nombre d'ordres de fabricació"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Línia de comptes de Mo Analytic"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Publica les entrades de comptabilitat analítica en temps real tant per als "
|
||||
"costos de components com operatius."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variants de producte"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Ordre de producció"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Mostrar valoració"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Moviment d'estoc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regla d'estoc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valoració"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Línia de comptes analítiques de Wc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centre de treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Ús del Centre de Treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Ordre de treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Nombre d'ordres de treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Ordres de treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Registre de productivitat del centre de treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Centres de treball"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Cru] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/cs.po
Normal file
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/cs.po
Normal file
|
|
@ -0,0 +1,232 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Jakub Smolka, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analytický účet"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analytická řádka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Kusovník"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Kusovníky"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Vypočítat cenu z kusovníku"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Vypočítat cenu produktu za použití produktů a operací souvisejícího výpisu "
|
||||
"materiálu pouze pro vyráběné výrobky."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Extra jednotkový náklad"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Položka deníku"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Výrobní příkaz"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Výrobní příkazy"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta výrobku"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Výrobní příkaz"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Pohyb zásob"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Pravidlo zásob"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Ocenění"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Výrobní středisko"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Využití výrobního střediska"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Pracovní příkaz"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Pracovní příkazy"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Protokol produktivity pracovního střediska"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
230
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/da.po
Normal file
230
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/da.po
Normal file
|
|
@ -0,0 +1,230 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analysekonto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analytisk linje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Stykliste"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Styklister"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Udregn pris fra stykliste"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Beregn prisen på produktet ved hjælp af produkter og aktiviteter på "
|
||||
"relaterede styklister, kun fremstillede produkter."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Registrerede omkostninger"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalpost"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Produktionsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Produktionsordrer"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varevariant"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Produktionsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Vis evaluering"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Lagerflytning"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Lager regel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Værdisætning"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Arbejdscenter"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Arbejdscenter forbrug"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Produktionsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Produktionsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Workcenter produktivitets log"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/de.po
Normal file
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/de.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Kostenstelle"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Kostenstellenbuchung"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Kostenstelle, auf die die Kosten- und Erlösbuchungen für das "
|
||||
"Finanzmanagement des Fertigungsauftrags erfolgen."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Kostenstelle, auf die die Kosten- und Erlösbuchungen für das "
|
||||
"Finanzmanagement des Fertigungsauftrags erfolgen."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Stückliste"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Stücklisten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Anzahl Stücklisten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Preis anhand der Stückliste berechnen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Berechnung des Produktpreises mittels Produkten und Vorgängen der "
|
||||
"entsprechenden Stücklisten, nur für Fertigungsprodukte."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Aufgezeichnete Kosten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Zusätzliche Einzelkosten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Buchungszeile"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Fertigungsauftrag"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Fertigungsaufträge"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Anzahl Fertigungsaufträge"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Zeile der Kostenstelle bei Fertigungsaufträgen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Bucht Posten in Kostenstellenrechnung in Echtzeit für Komponenten und "
|
||||
"Arbeitskosten."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariante"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Fertigungsauftrag"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Bewertung anzeigen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Lagerbuchung"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Bestandsregel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Bewertung"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Zeile der Kostenstelle bei Arbeitsplätzen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Arbeitsplatz"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Arbeitsplatznutzung"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Arbeitsauftrag"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Anzahl Arbeitsaufträge"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Arbeitsaufträge"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Produktivitätsprotokoll des Arbeitsplatzes"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Arbeitsplätze"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
56
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/el.po
Normal file
56
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/el.po
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_bom_cost
|
||||
#
|
||||
# Translators:
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-02 10:06+0000\n"
|
||||
"PO-Revision-Date: 2018-10-02 10:06+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_bom_cost
|
||||
#: model:ir.actions.server,name:mrp_bom_cost.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_bom_cost.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_bom_cost.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_bom_cost.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_bom_cost.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_bom_cost
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_bom_cost.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_bom_cost.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_bom_cost.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_bom_cost
|
||||
#: model:ir.model,name:mrp_bom_cost.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Είδος"
|
||||
|
||||
#. module: mrp_bom_cost
|
||||
#: model:ir.model,name:mrp_bom_cost.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Πρότυπο Είδους "
|
||||
|
||||
#. module: mrp_bom_cost
|
||||
#: code:addons/mrp_bom_cost/models/product.py:40
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The inventory valuation of some products %s is automated. You can only "
|
||||
"update their cost from the product form."
|
||||
msgstr ""
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/en_AU.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/en_AU.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/en_GB.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/"
|
||||
"odoo-9/language/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Product Template"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
239
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es.po
Normal file
239
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es.po
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ana Sanjuán, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Cuenta analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Línea analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Cuenta analítica en la que se producirán los asientos de costos e ingresos"
|
||||
" para la gestión financiera de la orden de fabricación."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Cuenta analítica en la que se producirán los asientos de costos e ingresos "
|
||||
"para la gestión financiera de la orden de fabricación."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de materiales"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Lista de materiales"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Número de LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calcular el precio con LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Podrá calcular el precio del producto mediante productos y operaciones que "
|
||||
"pertenezcan a listas de materiales relacionadas, pero solo puede hacer esto "
|
||||
"para productos de fabricación."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Coste registrado"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Coste unitario adicional"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunte contable"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Orden de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Órdenes de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Número de órdenes de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Línea de cuenta analítica de orden de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Publique asientos contables analíticos en tiempo real tanto para componentes"
|
||||
" como para costes operacionales."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de producto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Orden de producción"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Mostrar valoración"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Movimiento de stock"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regla de inventario"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valoración"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Línea de cuenta analítica de centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Utilización del centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Orden de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Número de órdenes de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Órdenes de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Registro de productividad del centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Centros de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Materia prima] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[Centro de trabajo] %s"
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_BO.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-24 20:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_BO/)\n"
|
||||
"Language: es_BO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_CL.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-10-06 08:56+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de material"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Cambiar precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Cambiar precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
160
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_CO.po
Normal file
160
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-02-17 21:50+0000\n"
|
||||
"Last-Translator: Felipe Palomino <omega@nubark.com>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr "El id. activo no se ha establecido en el Contexto."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de Materiales"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Cambiar Precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Cambiar Precio Estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr "Cambiar precios de la LdM hijas también"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr "Asistente de Cálculo de Precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr "Calcular desde Lista de Materiales"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcule el precio del producto el uso de productos y operaciones del "
|
||||
"proyecto de ley relacionado con materiales , sólo para los productos "
|
||||
"manufacturados ."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr "Generar asientos contables en tiempo real"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del Producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr "Establecer precio en la LdM"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio Estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
"El precio se calcula desde las líneas de lista de materiales que no son "
|
||||
"específicos de una variante"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, fuzzy, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
"Este asistente está construido para las plantillas de producto, mientras que "
|
||||
"está ejecutándolo ahora mismo desde una variante de producto."
|
||||
|
||||
#~ msgid "Compute price wizard"
|
||||
#~ msgstr "Asistente de cálculo de precio"
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_CR.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:22+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de material"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Cambiar precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Cambiar precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
158
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_DO.po
Normal file
158
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-19 06:01+0000\n"
|
||||
"Last-Translator: Juliano Henriquez <juliano@consultoriahenca.com>\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/"
|
||||
"odoo-9/language/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr "El id. activo no se ha establecido en el contexto."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de materiales"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Cambiar precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Cambiar precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr "Cambio de precios de hijo de la LDM"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr "Asistente de Calculo de precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr "Calcular desde LDM"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcular el precio del producto usando productos y operaciones relacionados "
|
||||
"con lista de materiales, sólo de productos manufacturados."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr "Generar asientos contables en tiempo real"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr "Fijar precio de lista de materiales"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
"El precio se calcula de la lista de materiales que no son específicas de "
|
||||
"variante"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, fuzzy, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
"Este asistente es para las plantillas de producto, mientras que se están "
|
||||
"ejecutando de una variante de producto."
|
||||
|
||||
#~ msgid "Compute price wizard"
|
||||
#~ msgstr "Asistente de Calculo de precio"
|
||||
161
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_EC.po
Normal file
161
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
# Luis Triana <luistriana.28@gmail.com>, 2015
|
||||
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-01-20 12:32+0000\n"
|
||||
"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr "El id. activo no se ha establecido en el contexto."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de material"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Cambiar precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Cambiar precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr "Cambiar precios de la LdM hijas también"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr "Asistente de cálculo de precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr "Calcular desde Lista de Materiales"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcule el precio del producto el uso de productos y operaciones del "
|
||||
"proyecto de ley relacionado con materiales , sólo para los productos "
|
||||
"manufacturados ."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr "Generar asientos contables en tiempo real"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr "Establecer precio en la LdM"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
"El precio se calcula desde las líneas de lista de materiales que no son "
|
||||
"específicos de una variante"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, fuzzy, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
"Este asistente está construido para las plantillas de producto, mientras que "
|
||||
"está ejecutándolo ahora mismo desde una variante de producto."
|
||||
|
||||
#~ msgid "Compute price wizard"
|
||||
#~ msgstr "Asistente de cálculo de precio"
|
||||
241
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_MX.po
Normal file
241
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,241 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2023
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Cuenta analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Línea analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Cuenta analítica en la que se producirán los asientos de costos e ingresos"
|
||||
" para la gestión financiera de la orden de fabricación."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Cuenta analítica en la que se producirán los asientos de costos e ingresos "
|
||||
"para la gestión financiera de la orden de fabricación."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de materiales"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Listas de materiales"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Número de listas de materiales"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calcular precio de LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcule el precio del producto usando productos y operaciones de la lista de"
|
||||
" materiales relacionadas, solo para los productos fabricados."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Costo registrado"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Costo unitario adicional"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunte contable"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Orden de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Órdenes de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Número de órdenes de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Línea de cuenta analítica de orden de fabricación"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Publique asientos contables analíticos en tiempo real tanto para componentes"
|
||||
" como costos operacionales."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante del producto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Orden de producción"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Mostrar valoración"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Movimiento de stock"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regla de inventario"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valoración"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Línea de cuenta analítica de centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Uso del centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Orden de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Número de órdenes de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Órdenes de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Registro de productividad del centro de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Centros de trabajo"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Materia prima] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[Centro de trabajo] %s"
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_PA.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_PA.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:22+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_PA/)\n"
|
||||
"Language: es_PA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
159
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_PE.po
Normal file
159
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-06-16 16:00+0000\n"
|
||||
"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/"
|
||||
"es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr "ID Activo no establecido en este Contexto."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de Material"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Cambiar Precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Cambiar Precio Estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr "Cambiar precios de LdMs hijas también"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr "Asistente de Cálculo de Precio"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr "Calcular desde LdM"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcular el precio del producto usando productos y operaciones de las listas "
|
||||
"de materiales relacionadas, solamente para productos fabricados."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr "Generar asientos contables en tiempo real"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de Producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr "Establecer precio en LdM"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio Estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
"El precio es calculado a partir de las líneas de lista de materiales que no "
|
||||
"son una variante específica"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, fuzzy, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
"Este asistente está diseñado para plantillas de productos, mientras lo esté "
|
||||
"ejecutando desde una variante de producto."
|
||||
|
||||
#~ msgid "Compute price wizard"
|
||||
#~ msgstr "Asistente de cálculo de crecio"
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_PY.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:22+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_VE.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-15 18:50+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de material"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Precio estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/et.po
Normal file
246
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/et.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Gert Valdek <gert@airobot.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Martin Aavastik <martin@avalah.ee>, 2022
|
||||
# Patrick-Jordan Kiudorv, 2022
|
||||
# Algo Kärp <algokarp@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Leaanika Randmets, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analüütiline konto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analüütiline rida"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Analüütiline konto, kuhu tehakse tootmistellimuse finantsjuhtimiseks kulu- "
|
||||
"ja tulukanded."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Analüütiline konto, kuhu tehakse tootmistellimuse finantsjuhtimiseks kulu- "
|
||||
"ja tulukanded."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Retsept"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Retseptid"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Retseptide arv"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategooria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Arvuta hind retseptist"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Arvutage toodetavate toodete tootehind, kasutades retseptiga seotud tooteid "
|
||||
"ning tegevusi."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Kulu salvestatud"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Täiendav ühiku hind"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Andmiku kanderida"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Tootmistellimus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Tootmistellimused"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Tootmistellimuste arv"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "MO analüütilise konto rida"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Postitab reaalajas analüütilised raamatupidamiskanded nii komponentide kui "
|
||||
"ka tegevuskulude kohta."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Toode"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Toote variatsioon"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Tootmiskäsk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Näita hindamist"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Laoliikumine"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Laoreegel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Hindamine"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Töökeskuse analüütilise konto rida"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Töökeskus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Töökeskuse kasutamine"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Töökäsk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Töökäskude arv"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Töökäsud"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Töökoha tootlikkuse logi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Töökeskused"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/eu.po
Normal file
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/eu.po
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-02-08 18:25+0000\n"
|
||||
"Last-Translator: Oihane Crucelaegui <oihanecruce@gmail.com>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/odoo/odoo-9/language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Materialen zerrenda"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Informazioa"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Product Template"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fa.po
Normal file
237
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fa.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "حساب تحلیلی"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "سطرتحلیلی"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"حساب تحلیلی که در آن ورودی هزینه و درآمد برای مدیریت مالی سفارش ساخت انجام "
|
||||
"می شود."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"حساب تحلیلی که در آن ورودی هزینه و درآمد برای مدیریت مالی سفارش ساخت انجام "
|
||||
"می شود."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "صورت مواد اولیه"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "صورت های مواد اولیه"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "تعاد صورت مواد اولیه"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "دسته بندی"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "محاسبه قیمت از صورت مواد اولیه"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"قیمت محصول را با استفاده از محصولات و عملیات مربوط به صورت مواد اولیه، فقط "
|
||||
"برای محصولات تولیدی محاسبه کنید."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "هزینه ثبت شده"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "هزینه اضافی واحد"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "آیتم روزنامه"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "سفارش تولید"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "سفارشات تولید"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "تعداد سفارشات تولید"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "مو خط حساب تحلیلی"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "محصول"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "گونه محصول"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "سفارش تولید"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "نمایش ارزیابی"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "انتقال موجودی"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "قانون موجودی انبار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "ارزش گذاری"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "خط حساب تحلیلی Wc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "مرکز کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "استفادههای مرکز کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "سفارش کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "تعداد سفارش کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "سفارشات کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "ثبت رویداد تولیدات مرکز کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "مراکز کار"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] ٪s"
|
||||
242
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fi.po
Normal file
242
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fi.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Henri Komulainen <henri.komulainen@web-veistamo.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Jussi Lehto <jussi@gulfeo.com>, 2022
|
||||
# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Svante Suominen <svante.suominen@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Kustannuspaikka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analyyttinen rivi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Analyyttinen tili, jolle tehdään kustannus- ja tulokirjaukset "
|
||||
"valmistustilauksen taloushallintoa varten."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Analyyttinen tili, jolle tehdään kustannus- ja tulokirjaukset "
|
||||
"valmistustilauksen taloushallintoa varten."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Osaluettelo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Osaluettelot"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Osaluetteloiden määrä"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategoria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Laske hinta osaluettelosta"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Laske tuotteen hinta käyttämällä tuotteita ja niihin liittyvän "
|
||||
"materiaaliluettelon toimintoja vain valmistetuille tuotteille."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Kirjatut kustannukset"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Ylimääräinen yksikkökustannus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Päiväkirjatapahtuma"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Valmistustilaus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Valmistustilaukset"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Vaklmistustilausten määrä"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Valmistustilauksen analyyttisen tilin rivi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Kirjoittaa analyyttiset kirjanpitomerkinnät reaaliaikaisesti sekä "
|
||||
"komponentti- että toimintakustannusten osalta."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Tuotevariaatio"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Valmistustilaus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Näytä arvostus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Varastosiirto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Varaston sääntö"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Arvostus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Työpisteen analyyttisen tilin rivi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Työpiste"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Työpisteen käyttäminen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Työtilaus"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Työtilausten määrä"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Työtilaukset"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Työpisteen tuottavuusloki"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Työpisteet"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fo.po
Normal file
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fo.po
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-12-22 23:50+0000\n"
|
||||
"Last-Translator: Jarnhold Nattestad <nattestads@gmail.com>\n"
|
||||
"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Strika"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fr.po
Normal file
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fr.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Compte analytique"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Ligne analytique"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Compte analytique dans lequel les coûts et revenus seront enregistrés pour "
|
||||
"la gestion financière liée à l'ordre de fabrication. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Compte analytique dans lequel les coûts et revenus seront enregistrés pour "
|
||||
"la gestion financière liée à l'ordre de fabrication. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Nomenclature"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Nomenclatures"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Nombre de nomenclatures"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Catégorie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calculer le prix depuis la nomenclature"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calculer le prix du produit en utilisant les produits et les opérations de "
|
||||
"la nomenclature correspondante, seulement pour les produits fabriqués."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Coût enregistré"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Coût de l'unité supplémentaire"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Écriture comptable"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordre de fabrication"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Ordres de fabrication"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Nombre d'ordres de fabrication"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Ligne de compte analytique OF"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Publiez des écritures comptables analytiques en temps réel pour les coûts "
|
||||
"des composants et les coûts opérationnels."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de produit"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Ordre de fabrication"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Montrer la valorisation"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Mouvement de stock"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Règle de stock"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valorisation"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Ligne de compte analytique poste de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Poste de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Utilisation du poste de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Ordre de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Nombre d'ordres de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Ordres de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Journal de productivité du poste de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Postes de travail"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Brut] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[PDT] %s"
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fr_BE.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fr_BE.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fr_CA.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-10-09 06:36+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modèle de produit"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/gl.po
Normal file
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/gl.po
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de material"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modelo de Producto"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Prezo estándar"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
227
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/gu.po
Normal file
227
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/gu.po
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analytic Account"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analytic Line"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Category"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journal Item"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Product Variant"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
242
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/he.po
Normal file
242
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/he.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2022
|
||||
# Hed Shefer <hed@laylinetech.com>, 2022
|
||||
# Sagi Ahiel, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# yael terner, 2023
|
||||
# or balmas, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "חשבון אנליטי"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "שורה אנליטית"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "עץ מוצר"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "עץ מוצר "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "# עצי מוצר"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "קטגוריה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "חשב מחיר מעץ המוצר"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"חשב את מחיר המוצר באמצעות מוצרים ופעולות עץ המוצר הקשורות, למוצרים מיוצרים "
|
||||
"בלבד."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "עלות שנרשמה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "עלות יחידה נוספת"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "תנועת יומן"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "הוראת ייצור"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "הוראות ייצור"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "ספירת הזמנות ייצור"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "שורת חשבון אנליטי הוראת ייצור"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "מוצר"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "וריאנט מוצר"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "הוראת ייצור"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "הצגת הערכת שווי"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "תנועת מלאי"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "כלל מלאי "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "הערכת שווי"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "שורת חשבון אנליטי תחנת עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "תחנת עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "שימוש בתחנת עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "הוראת עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "מס' הזמנת עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "הוראות עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "יומן יצרנות של תחנת העבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "תחנות עבודה"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hi.po
Normal file
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hi.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "एनालिटिक अकाउंट"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "एनालिटिक लाइन"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "वर्ग"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "जर्नल आइटम"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "विनिर्माण आदेश"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "उत्पाद"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "उत्पाद प्रकार"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "उत्पादन के आदेश"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "चाल स्टॉक"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "कार्य केंद्र"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "काम के आदेश"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
239
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hr.po
Normal file
239
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hr.po
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Milan Tribuson <one.mile.code@gmail.com>, 2022
|
||||
# Tina Milas, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
# Vladimir Vrgoč, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Vladimir Vrgoč, 2025\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitički konto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitička stavka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Sastavnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Sastavnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Broj sastavnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Izračunaj cijenu iz sastavnice"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Izračun cijene proizvoda korištenjem proizvoda i operacija povezanih "
|
||||
"sastavnica, samo za proizvedene proizvode."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Trošak ubilježen"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Dodatni trošak po jedinici"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Nalog za proizvodnju"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Nalozi za proizvodnju"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Broj proizvodnih naloga"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Analitička stavka PN"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Knjiži automatikom računovodstvene stavke analitike za komponente i troškove"
|
||||
" operacija."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Prikaži vrednovanje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Skladišni prijenos"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Skladišno pravilo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Vrednovanje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "RN stavka analitike"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Radni centar"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Korištenje radnog centra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Radni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Broj radnih naloga"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Radni nalozi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Log produktivnosti radnog centra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Radni centri"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Sirov] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[RC] %s"
|
||||
234
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hu.po
Normal file
234
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hu.po
Normal file
|
|
@ -0,0 +1,234 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Dombos, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# krnkris, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitikus számla"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitikus sor"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Anyagjegyzék"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Anyagjegyzékek"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategória"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Ár kalkulálása anyaglistából"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Egy termék ára számítva az ide vonatkozó termék és az anyagjegyzék "
|
||||
"műveletéből, kizárólag a gyártandó termékekhez."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Költség rögzítve"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Könyvelési tételsor"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Gyártási rendelés"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Gyártási rendelések"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Termék"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Termékváltozat"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Termelési rendelés"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Készletmozgás"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Készletszabály"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Értékelés"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Munkaállomás"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Munkaállomás használata"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Munkarendelés"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Munkarendelések"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hy.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/hy.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/id.po
Normal file
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/id.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Akun Analitik"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Baris Analitik"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Akun analitik di mana entri biaya dan pendapatan akan berlangsung "
|
||||
"untuk manajemen keuangan manufacturing order."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Akun analitik di mana entri biaya dan pendapatan akan berlangsung untuk "
|
||||
"manajemen keuangan manufacturing order."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Daftar Kebutuhan Material (BOM)"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Daftar Kebutuhan Material (BOM)"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Jumlah BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Hitung Harga dari BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Hitung harga produk menggunakan produk dan operasi BoM terkait, hanya untuk "
|
||||
"produk yang dimanufaktur."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Biaya Tercatat"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Biaya Unit Ekstra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item Jurnal"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Manufacturing Order"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Manufacturing Orders"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Jumlah Manufacturing Order"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Baris Akun Analitik Mo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Memposting entri akuntansi analitik secara real time untuk biaya komponen "
|
||||
"dan operasional."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Order Produksi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Tampilkan Penilaian"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Pergerakan Stok"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Peraturan Sto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Penilaian"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Baris Akun Analitik Wc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Pusat Kerja"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Penggunaan Pusat Kerja"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "SPK"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Jumlah SPK"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "SPK"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Log Produktivitas Pusat kerja"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Pusatkerja"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
228
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/is.po
Normal file
228
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/is.po
Normal file
|
|
@ -0,0 +1,228 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# jonasyngvi, 2024
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Greiningaraðgangur"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Greiningarlína"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Flokkur"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Vara"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Vöruafbrigði"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/it.po
Normal file
237
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/it.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Conto analitico"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Riga analitica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Conto analitico in cui avverranno le registrazioni di costi e ricavi per la "
|
||||
"gestione finanziaria dell'ordine di produzione."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Conto analitico in cui avverranno le registrazioni di costi e ricavi per la "
|
||||
"gestione finanziaria dell'ordine di produzione."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Distinta base"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Distinte base"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Numero DiBa"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calcola prezzo dalla DiBa"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcola il prezzo del prodotto usando prodotti e operazioni della distinta "
|
||||
"base correlata. Solo per prodotti fabbricati. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Costo registrato"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Costo unitario aggiuntivo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Movimento contabile"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordine di produzione"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Ordini di produzione"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Numero ordini di produzione"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Riga conto analitico OdP"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Registra le voci relative alla contabilità analitica in tempo reale per i "
|
||||
"costi operazionali e dei componenti."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Prodotto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante prodotto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Ordine di produzione"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Mostra valutazione"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Movimento di magazzino"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regola di giacenza"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valutazione"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Riga conto analitico CdL"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centro di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Utilizzo centro di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Ordine di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Numero ordini di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Ordini di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Registro produttività centro di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Centri di lavoro"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Materie prime] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[CdL] %s"
|
||||
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ja.po
Normal file
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ja.po
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "分析勘定"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "分析行"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "部品表"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "部品表"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "部品表数"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "カテゴリ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "部品表から価格を計算"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr "製造された製品のみに関連する部品表の製品および操作を使用して、製品の価格を計算します。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "コストが記録されました"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "追加単位原価"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "仕訳明細"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "製造オーダ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "製造オーダ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "製造オーダ数"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "製造オーダ分析会計明細"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "プロダクト"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "プロダクトバリアント"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "製造オーダ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "評価を表示"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "在庫移動"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "在庫規則"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "評価"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "運転資本(WC)勘定明細"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "作業区"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "作業区用途"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "作業オーダ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "作業オーダ数"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "作業オーダ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "作業区 生産記録"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "作業区"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ka.po
Normal file
148
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ka.po
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-06-27 15:58+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "შეწყვეტა"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "ინფორმაცია"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/kab.po
Normal file
151
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/kab.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 07:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr "Asulay urmid ulacit deg umnaḍ"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Tagrawalt"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Sefsex"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Snifel ssuma"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Snifel ssuma "
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr "Amarag n usiḍen ssuma"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Taneɣruft n ufaris"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr "Sers ssuma ɣef tegrawalt"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Compute price wizard"
|
||||
#~ msgstr "Amarag n usiḍen n ssuma"
|
||||
230
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/km.po
Normal file
230
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/km.po
Normal file
|
|
@ -0,0 +1,230 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "គណនីវិភាគ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "វិភាគដែនកំណត់"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "វិក័យប័ត្រនៃសម្ភារៈ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "ប្រភេទ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "គណនាតម្លៃពី BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"គណនាតម្លៃផលិតផលដោយប្រើផលិតផលនិងប្រតិបត្តិការនៃវិក័យប័ត្រដែលទាក់ទងនឹងវត្ថុធាតុដើមសម្រាប់ផលិតផលផលិតតែប៉ុណ្ណោះ។"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "ការកត់ត្រាថ្លៃដើម"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ប្រភេទទិនានុប្បវត្ត"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "លំដាប់ផលិតកម្ម"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "ការបញ្ជាទិញផលិតកម្ម។"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "ផលិតផល"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ការផ្លាស់ប្តូរផលិតផល"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "លំដាប់ផលិតកម្ម"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "ឃ្លំាងត្រូវបានផ្លាស់ប្តូរ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "វិធានភាគហ៊ុន"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "ដែលមជ្ឈមណ្ឌលការងារ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "លំដាប់ការងារ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "ការបញ្ជាទិញការងារ។"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "កំណត់ហេតុផលិតភាពរបស់ Workcenter"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ko.po
Normal file
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ko.po
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Sarah Park, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "분석 계정"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "분석 라인"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr "제조 주문의 재무 관리를 위해 비용 및 수익 항목을 입력하는 분석 계정입니다."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr "제조 주문의 재무 관리를 위해 비용 및 수익 항목을 입력하는 분석 계정입니다."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "재료 명세서"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "재료 명세서"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BoM 수"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "카테고리"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "BoM에서 가격 계산"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr "제조된 제품에 대해서만 관련 BOM의 제품 및 작업을 사용하여 제품 가격을 계산합니다."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "비용 기록"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "추가 단위 비용"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "분개 항목"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "제조 주문"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "제조 주문"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "제조 주문 수"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "제조 주문서 분석 계정 내역"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr "부품 및 운영 비용에 대한 분석 회계 항목을 실시간으로 게시합니다."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "품목"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "품목 세부선택"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "생산 주문"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "평가 표시"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "재고 이동"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "재고 규칙"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "평가"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Wc 분석 계정 내역"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "작업장"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "작업장 사용율"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "작업 지시"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "작업 지시 수"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "작업 지시서"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "작업장의 생산성 기록"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "작업장"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
108
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lb.po
Normal file
108
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lb.po
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-12 11:32+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra cost per produced unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Fill this only if you want automatic analytic accounting entries on "
|
||||
"production orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid ""
|
||||
"Technical field automatically checked when a ongoing production posts "
|
||||
"journal entries for its costs. This way, we can record one production's cost"
|
||||
" multiple times and only consider new entries in the work centers time "
|
||||
"lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/product.py:40
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The inventory valuation of some products %s is automated. You can only "
|
||||
"update their cost from the product form."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lo.po
Normal file
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lo.po
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "ບັນຊີວິເຄາະ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "ໝວດ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ລານການລົງບັນຊີ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "ສິນຄ້າ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
235
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lt.po
Normal file
235
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lt.po
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitinė sąskaita"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitinė eilutė"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Komplektavimo specifikacija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Komplektavimo specifikacijos"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Suskaičiuoti kainą iš KS (BOM)"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Skaičiuoti produkto kainą naudojant susijusios komplektavimo specifikacijos "
|
||||
"produktus ir operacijas. Tik pagamintiems produktams."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Įrašyta savikaina"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Žurnalo įrašas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Gamybos užsakymas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Gamybos užsakymai"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Gamybos užsakymų skaičius"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produktas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkto variantas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Gamybos užsakymas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Atsargų perkėlimas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Atsargų taisyklė"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Įvertinimas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Darbo centras"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Darbo centro naudojimas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Darbo užsakymas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Darbų užsakymai"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Darbo centro produktyvumo žurnalas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lv.po
Normal file
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/lv.po
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Will Sensors, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Will Sensors, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analītiskais Konts"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analytic Line"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Recepte"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Komplektācijas"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Kontējums"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ražošanas orderis"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Ražošanas orderi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkts"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkta Veids"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Ražošanas orderis"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Krājumu kustība"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Noliktavas noteikums"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Resurss"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Resursu lietojums"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Izpildes orderis"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Izpildes orderi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/mk.po
Normal file
156
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/mk.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-10-22 12:09+0000\n"
|
||||
"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/"
|
||||
"mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr "Активниот идентификациски број не е подесен во Контекстот."
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Норматив"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr "Промени цена"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr "Промени стандардна цена"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr "Промени ги цените на под нормативите исто така"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr "Волшебник за пресметка на цени"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr "Генерирај сметководствени внесови кога реално"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr "Информација"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Урнек на производ"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr "Подеси цена на норматив"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr "Стандардна цена"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
"Цената се оформува според сметката од ставките на материјалот кои што не се "
|
||||
"варијантно специфични"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, fuzzy, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
"Овој волшебник е направен за урнеци на производи, додека моментално го "
|
||||
"користите од варијанта на производ."
|
||||
|
||||
#~ msgid "Compute price wizard"
|
||||
#~ msgstr "Волшебник за пресметка на цени"
|
||||
228
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ml.po
Normal file
228
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ml.po
Normal file
|
|
@ -0,0 +1,228 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
# Nikhil Krishnan, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Nikhil Krishnan, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "അനലിറ്റിക് അക്കൗണ്ട്"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "അനാലിറ്റിക് ലൈൻ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "ബില് ഓഫ് മെറ്റീരിയൽസ് "
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "ബില് ഓഫ് മെറ്റീരിയൽസ് "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "കാറ്റഗറി"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ജേർണൽ ഐറ്റം"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "മാനുഫാക്ചട്യൂറിങ് ഓർഡർ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "മാനുഫാക്ചട്യൂറിങ് ഓർഡറുകൾ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "പ്രോഡക്റ്റ്"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "പ്രോഡക്റ്റ് വേരിയന്റ്"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "പ്രൊഡക്ഷൻ ഓർഡർ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "സ്റ്റോക്ക് മൂവ് "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "സ്റ്റോക്ക് റൂൾ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "വാലുവേഷൻ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "വർക്ക് ഓർഡർ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "വർക്ക് ഓർഡറുകൾ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ml_IN.po
Normal file
149
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ml_IN.po
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-04-22 12:13+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/ml_IN/)\n"
|
||||
"Language: ml_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:24
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:40
|
||||
#, python-format
|
||||
msgid "Active ID is not set in Context."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Change Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_recursive
|
||||
msgid "Change prices of child BoMs too"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.actions.act_window,name:product_extended.action_view_compute_price_wizard
|
||||
#: model:ir.model,name:product_extended.model_wizard_price
|
||||
msgid "Compute Price Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_create_date
|
||||
msgid "Created on"
|
||||
msgstr "നിർമിച്ച ദിവസം"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_real_time_accounting
|
||||
msgid "Generate accounting entries when real-time"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_info_field
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_wizard_price_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_get_variant_count
|
||||
msgid "Number of variant for the product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid "Set price on BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model.fields,field_description:product_extended.field_mrp_bom_standard_price
|
||||
msgid "Standard Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.view_compute_price_wizard
|
||||
msgid ""
|
||||
"The price is computed from the bill of material lines which are not variant "
|
||||
"specific"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: code:addons/product_extended/wizard/wizard_price.py:38
|
||||
#, python-format
|
||||
msgid ""
|
||||
"This wizard is built for product templates, while you are currently running "
|
||||
"it from a product variant."
|
||||
msgstr ""
|
||||
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/mn.po
Normal file
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/mn.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2022
|
||||
# Bayarkhuu Bataa, 2022
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Шинжилгээний данс"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Шинжилгээний мөр"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Орц"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Орц"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Ангилал"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Орцоос үнийг тооцоолох"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Холбогдох орцын түүхий эд болон ажилбаруудаас барааны үнийг тооцоолно, "
|
||||
"зөвхөн үйлдвэрлэх барааны хувьд."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Бүртгэгдсэн Зардал"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Журналын бичилт"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Үйлдвэрлэлийн Захиалга"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Үйлдвэрлэлийн захиалгууд"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Бараа"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Барааны хувилбар"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Үйлдвэрлэлийн захиалга"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Барааны хөдөлгөөн"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Агуулахын дүрэм"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Өртөгийн дүн"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Дамжлага"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Дамжлагын Ашиглалт"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Ажлын Захиалга"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Ажлын Захиалгууд"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Дамжлагын Бүтээмж Хөтөлгөө"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,227 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
227
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ms.po
Normal file
227
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ms.po
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Akaun Analitik"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Talian Analitik"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "kategori"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item Jurnal"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Pesanan Pembuatan"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Pesanan Pembuatan"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Pergerakan Saham"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Penggunaan Pusat Kerja"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Arahan Kerja"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/nb.po
Normal file
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/nb.po
Normal file
|
|
@ -0,0 +1,232 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Lars Aam <lars.aam@vikenfiber.no>, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Rune Restad, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rune Restad, 2024\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analytisk konto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analytisk linje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Stykkliste"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Stykklister"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BoM antall"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Kalkuler pris fra BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Beregn prisen på produktet ved hjelp av produkter og operasjoner fra den "
|
||||
"relaterte materiallisten, kun for produserte produkter."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Kostnad registrert"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Ekstra enhets kost"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalpost"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Produksjonsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Produksjonsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Antall produksjonsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "MO analytisk kontolinje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Produksjonsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Vis verdi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Lagerbevegelse"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regel lagring"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Lagerverdi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Wc analytisk kontolinje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Arbeidssenter"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Arbeidssenter bruk"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Arbeidsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Antall arbeidsordre"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Arbeidsordrer"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Arbeidsstasjonens produktivitetslogg"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/nl.po
Normal file
237
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/nl.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Jolien De Paepe, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Kostenplaats"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Kostenplaatsregel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Kostenplaats waarin kosten en omzet worden geboekt voor het financieel "
|
||||
"beheer van de productieorder."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Kostenplaats waarin kosten en omzet worden geboekt voor het financieel "
|
||||
"beheer van de productieorder."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Stuklijst"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Stuklijsten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Aantal stuklijsten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categorie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Bereken kostprijs vanuit stuklijst"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Bereken de prijs van het product gebruikmakend van producten en bewerkingen "
|
||||
"gerelateerd aan de stuklijst, enkel voor geproduceerde producten."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Kosten geregistreerd"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Extra eenheidkosten"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Boekingsregel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Productieorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Productieorders"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Aantal productieorders"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Kostenplaats productieorderregel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Boekt kostenplaatsboekingen in real time voor zowel onderdeel- als "
|
||||
"operationele kosten."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Productvariant"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Productieorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Toon waardering"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Voorraadverplaatsing"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Voorraadregel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Waarde"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Kostenplaats werkplek"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Werkplek"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Gebruik werkplek"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Werkorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Aantal werkorders"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Werkorders"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Werkplek effectiviteitslog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Werkplekken"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Component] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WP] %s"
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/no.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/no.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
243
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/pl.po
Normal file
243
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/pl.po
Normal file
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Maja Stawicka <mjstwck@wp.pl>, 2022
|
||||
# Maciej Stawicki <ms@3lance.pl>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Paweł Wodyński <pw@myodoo.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2023
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Konto analityczne"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Pozycja analityczna"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Konto analityczne, na którym odbywać się będą zapisy kosztów i przychodów w "
|
||||
"celu finansowego zarządzania zleceniem produkcyjnym."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Konto analityczne, na którym odbywać się będą zapisy kosztów i przychodów w "
|
||||
"celu finansowego zarządzania zleceniem produkcyjnym."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Zestawienie materiałowe"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Zestawienia materiałowe"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Liczba BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategoria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Oblicz cenę z zestawienia materiałowego"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Oblicz cenę produktu przy użyciu produktów i operacji na powiązanych "
|
||||
"składnikach z zestawienia materiałowego, tylko dla wytworzonych produktów."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Zaewidencjonowane Koszty"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Dodatkowy koszt jednostkowy"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Pozycja zapisu"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Zamówienie produkcji"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Zamówienia produkcji"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Liczba zamówień produkcyjnych"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Pozycja konta analitycznego Mo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Księgowanie analityczne w czasie rzeczywistym zarówno dla kosztów składowych"
|
||||
" jak i operacyjnych."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Wariant produktu"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Zamówienie produkcji"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Pokaż wycenę"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Przesunięcie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Reguła zasobów"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Wycena"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Pozycja konta analitycznego Wc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Gniazdo produkcyjne"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Obciążenie centrum roboczego"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Zlecenie operacji"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Liczba zleceń operacji"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Zlecenia operacji"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Dziennik produktywności centrum roboczego"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Centra robocze"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Surowe] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
234
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/pt.po
Normal file
234
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/pt.po
Normal file
|
|
@ -0,0 +1,234 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
# Pedro Castro Silva <pedrocs@exo.pt>, 2022
|
||||
# Luiz Fernando <lfpsgs@outlook.com>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Conta Analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Linha Analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de Material"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Listas de Materiais"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Número de LdMs"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item do Diário"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordem de Produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Ordens de Produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Número de Ordens de Produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de Artigo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Ordem de Produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Movimento do Stock"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regras de Inventariação"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valorização"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centro de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Uso do Centro de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Ordem de trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Número de Ordens de Serviço"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Ordens de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Registo de Produtividade do Centro de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
231
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/pt_BR.po
Normal file
231
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Kevilyn Rosa, 2023
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Layna Nascimento, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Conta Analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Linha Analítica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Lista de Materiais"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Listas de Materiais"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Contagem da lista de materiais"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calcular Preço da LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calcule o preço do produto usando produtos e operações da lista dos "
|
||||
"materiais relacionada, apenas para produtos manufaturados."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Custo Registrado"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Custo unitário extra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item de Diário"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordem de produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Ordens de produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Contagem de ordens de produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Linha de conta analítica da OP"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variação do Produto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Ordem de Produção"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Exibir Valoração"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Movimento de Estoque"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regra de estoque"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Valorização"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Linha de conta analítica do centro de trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centro de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Carga do Centro de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Ordem de trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Contagem de ordens de trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Ordens de Serviço"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Registro de Produtividade do Centro de Trabalho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[CT] %s"
|
||||
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ro.po
Normal file
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ro.po
Normal file
|
|
@ -0,0 +1,232 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Cont analitic"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Linie analitica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Listă de materiale"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Liste de materiale"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Număr LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Categorie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Calcul preț din LdM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Calculați prețul produsului folosind produsele și operațiile listei de "
|
||||
"materiale asociate, doar pentru produsele fabricate."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Cost Înregistrat"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Cost unitar suplimentar"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Element jurnal"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Comanda de Producție"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Comenzi de producție"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Număr comenzi de producție"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "CP Linie cont analitic"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produs"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variantă produs"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Comanda de Producție"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Afișare evaluare"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Mișcare stoc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Regulă stoc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Evaluare"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "CL Linie cont analitic"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Centru de lucru"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Utilizare Centru de lucru"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Comanda de Lucru"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Număr comenzi de lucru"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Comenzi de lucru"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Jurnal productivitate centru de lucru"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[CL] %s"
|
||||
240
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ru.po
Normal file
240
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ru.po
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Максим Дронь <dronmax@gmail.com>, 2022
|
||||
# valmasone, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# alenafairy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: alenafairy, 2023\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Аналитический счёт"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Позиция аналитики"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Аналитический счет, на котором будут производиться проводки расходов и "
|
||||
"доходов для финансового управления заявкой на производство."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Аналитический счет, на котором будут производиться проводки расходов и "
|
||||
"доходов для финансового управления заявкой на производство."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Спецификация"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Спецификации"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Количество в спецификации"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Категория"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Рассчитать цену из спецификации"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Вычислить цену продукта, используя продукты и операции соответствующей "
|
||||
"ведомости материалов; только для производимых продуктов."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Стоимость записана"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Стоимость дополнительной единицы"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Элемент журнала"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Заявка на производство"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Заявки на производство"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Количество заявок на производство"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Строка аналитического счета в заявке"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Проводит аналитические бухгалтерские проводки в режиме реального времени как"
|
||||
" по комплектующим, так и по производственным затратам."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Вариант продукта"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Производственный заказ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Показать оценку"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Перемещение на складе"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Правило склада"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Оценка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Строка аналитического счета по рабочему центру"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Производственный участок"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Использование производственного участка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Производственное задание"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Количество производственных заказов"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Производственные задания"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Журнал продуктивности участка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Рабочие центры"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Сырье] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[Рабочий центр] %s"
|
||||
238
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sk.po
Normal file
238
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sk.po
Normal file
|
|
@ -0,0 +1,238 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jan Prokop, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2023
|
||||
# Tomáš Píšek, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 2025\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analytický účet"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analytický riadok"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Kusovník materiálu"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Kusovníky"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Počet kusovníkov"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategória"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Vypočítajte cenu z BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Vypočítať cenu produktu pomocou produkotv a operácií pridružených "
|
||||
"kusovníkov, len pre vyrobené produkty."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Zaznamenané náklady"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Ďalšie jednotkové náklady"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Položka účtovnej knihy"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Výrobná objednávka"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Výrobné objednávky"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Počet výrobných objednávok"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Analytický riadok výrobnej objednávky"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta produktu"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Výrobná objednávka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Ocenenie zásob"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Pohyb skladu"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Skladové pravidlo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Ocenenie"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Riadok analytického účtu pracoviska"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Pracovisko"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Užívanie pracoviska"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Pracovná objednávka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Počet pracovných objednávok"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Pracovné objednávky"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Záznamy produktivity pracoviska"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
231
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sl.po
Normal file
231
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sl.po
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Nejc G <nejc@luxim.si>, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitični konto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitična postavka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Kosovnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Kosovnica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Postavka"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Proizvodni nalogi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Različica proizvoda"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Prikaži vrednotenje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Premik zaloge"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Pravilo zaloge"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Vrednotenje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Delovni center"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Zasedenost delovnega centra"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Delovni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Delovni nalogi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sq.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sq.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sr.po
Normal file
232
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sr.po
Normal file
|
|
@ -0,0 +1,232 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djvmarjanovic@gmail.com>, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Račun analitike"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Linija analitike"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Racun Materijala"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Troškovi materijala"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BoM brojač"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategorija"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Compute Price from BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Extra Unit Cost"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka izveštaja"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Nalozi za proizvodnj"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Brojač naloga za proizvodnju"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Mo Analytic Account Line"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijante proizvoda"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Nalog za proizvodnju"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Show Valuation"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Premeštanje zaliha"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Pravilo zalihe"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Procena"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Wc Analytic Account Line"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Radionica"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Work Center Usage"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Work Order"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Brojač radnih naloga"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Radni Nalozi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Workcenter Productivity Log"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_extended
|
||||
#
|
||||
# Translators:
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Djordje Marjanovic <djordje_m@yahoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_view_form_normal_inherit_extended
|
||||
msgid "Compute from BOM"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:product_extended.product_product_view_form_normal_inherit_extended
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: product_extended
|
||||
#: model:ir.model,name:product_extended.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sv.po
Normal file
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sv.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Simon S, 2022
|
||||
# Leif Persson <leifpz54@gmail.com>, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analyskonto"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analysrad"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Produktstruktur"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Materialförteckningar"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BoM-räkning"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Beräkna pris från BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Beräkna priset på produkten med hjälp av produkter och operationer i "
|
||||
"relaterade stycklistor, endast för tillverkade produkter."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Extra enhetskostnad"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Transaktion"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Tillverkningsorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Tillverkningsorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Orderingång för tillverkningsindustrin"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Mo Analytic Account Line"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Tillverkningsorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Visa värdering"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Lagerflytt"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Lagerregel"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Värdering"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Wc Objekt Kontolinje"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Produktionsgrupp"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Användning produktionsgrupp"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Arbetsorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Antal arbetsorder"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Arbetsordrar"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Produktionsgrupp Produktivitets Log"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Produktionsgrupper"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sw.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/sw.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ta.po
Normal file
223
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/ta.po
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr ""
|
||||
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/th.po
Normal file
233
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/th.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2023
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "บัญชีวิเคราะห์"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "ไลน์การวิเคราะห์"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"บัญชีวิเคราะห์รายการต้นทุนและรายได้จะเกิดขึ้นสำหรับการจัดการทางการเงินของใบสั่งผลิต"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"บัญชีวิเคราะห์รายการต้นทุนและรายได้จะเกิดขึ้นสำหรับการจัดการทางการเงินของใบสั่งผลิต"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "บิลวัสดุ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "บิลวัสดุ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "จำนวน BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "หมวดหมู่"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "คำนวณราคาจาก BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"คำนวณราคาของสินค้าโดยใช้ผลิตภัณฑ์และการปฏิบัติของบิลวัสดุที่เกี่ยวข้อง "
|
||||
"สำหรับผลิตภัณฑ์ที่ผลิตเท่านั้น"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "ต้นทุนที่ถูกบันทึก"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "ต้นทุนต่อหน่วยพิเศษ"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "รายการบันทึก"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "ใบสั่งผลิต"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "ใบสั่งผลิต"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "จำนวนใบสั่งผลิต"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "ไลน์บัญชีวิเคราะห์ Mo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "สินค้า"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ตัวแปรสินค้า"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "คำสั่งผลิต"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "แสดงการประเมินมูลค่า"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "ย้ายสต๊อก"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "กฎสต๊อก"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "การประเมินมูลค่า"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "ไลน์บัญชีวิเคราห์ Wc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "ศูนย์งาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "การใช้ศูนย์งาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "คำสั่งงาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "จำนวนคำสั่งงาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "คำสั่งงาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "บันทึกผลผลิตของศูนย์งาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "ศูนย์งาน"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
245
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/tr.po
Normal file
245
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/tr.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Özlem Atalay <ozlema@eskayazilim.com.tr>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2022
|
||||
# Buket Şeker <buket_skr@hotmail.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# İlknur Gözütok, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: İlknur Gözütok, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Analitik Hesap"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitik Satırı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Üretim emrinin finansal yönetimi için maliyet ve gelir girişlerinin yer "
|
||||
"alacağı analitik hesap."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Üretim emrinin finansal yönetimi için maliyet ve gelir girişlerinin yer "
|
||||
"alacağı analitik hesap."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Ürün Reçetesi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Ürün Reçetesi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BoM Sayısı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "BoM'dan fiyat hesapla"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Ürünün fiyatını yalnızca üretilmiş ürünlerin ürün ağaçlarıyla ilişkili "
|
||||
"ürünleri ve işlemleri kullanarak hesapla."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Maliyet Kaydedildi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Ekstra Birim Maliyet"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Yevmiye Kalemi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Üretim Emri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Üretim Emirleri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Üretim Emri Sayısı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "MO Analitik Hesap Satırları"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Hem bileşen hem de operasyonel maliyetler için analitik muhasebe girişlerini"
|
||||
" gerçek zamanlı olarak deftere nakleder."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Ürün Varyantı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Üretim Emri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Show Valuation"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Stok Hareketi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Stok Kuralı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Değerleme"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "İş Merkezi Analitik Hesap Satırı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "İş Merkezi"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "İş Merkezi Kullanımı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "İş Emri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "İş Emri Sayısı"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "İş Emirleri"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "İş Merkezi Verimlilik Günlüğü"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "İş Merkezleri"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Bileşen] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/uk.po
Normal file
236
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/uk.po
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Аналітичний рахунок"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Рядок аналітики"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Аналітичний рахунок, у якому будуть здійснюватися записи витрат і доходів "
|
||||
"для фінансового управління виробничим замовленням."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Аналітичний рахунок, у якому будуть здійснюватися записи витрат і доходів "
|
||||
"для фінансового управління виробничим замовленням."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Специфікація"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Специфікації"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Підрахунок специфікацій"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Категорія"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Розрахуйте ціну зі специфікації"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Обчисліть ціну товару, використовуючи товари та операції відповідної "
|
||||
"специфікації, тільки для виготовлених товарів."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Записи вартості"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Вартість додаткової одиниці"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Елемент журналу"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Замовлення на виробництво"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Замовлення на виробництво"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Підрахунок замовлень на виробництво"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Рядок аналітичного рахунку Mo"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Проведення аналітичних бухгалтерських проводок в режимі реального часу як по"
|
||||
" складових, так і по операційних витратах."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Товар"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Варіант товару"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Замовлення на виробництво"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Показати оцінку"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Складське переміщення "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Складське правило"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Оцінка"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Рядко аналітичного рахунку Wc"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Робочий центр"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Використання робочого центру"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Робоче замовлення"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Підрахунок робочих завдань"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Робочі замовлення"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Журнал продуктивності робочого центру"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Робочі центри"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
240
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/vi.po
Normal file
240
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/vi.po
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "Tài khoản phân tích"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Dòng phân tích"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Tài khoản phân tích nơi thực hiện bút toán chi phí và doanh thu để quản lý "
|
||||
"tài chính cho lệnh sản xuất. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr ""
|
||||
"Tài khoản phân tích nơi thực hiện bút toán chi phí và doanh thu để quản lý "
|
||||
"tài chính cho lệnh sản xuất. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Danh mục vật tư"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "Danh mục vật tư"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "Số BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "Danh mục"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "Tính giá từ BoM"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr ""
|
||||
"Tính toán giá của sản phẩm bằng cách sử dụng sản phẩm và hoạt động của danh "
|
||||
"mục vật tư liên quan, chỉ áp dụng cho sản phẩm được sản xuất. "
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "Chi phí đã ghi nhận"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "Chi phí đơn vị bổ sung"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Bút toán"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Lệnh sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "Lệnh sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "Số lệnh sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "Dòng tài khoản phân tích MO"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
"Ghi sổ các bút toán kế toán phân tích theo thời gian thực cho cả chi phí "
|
||||
"thành phần và hoạt động."
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Lệnh sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "Hiển thị định giá"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Dịch chuyển tồn kho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "Quy tắc tồn kho"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "Định giá"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Dòng tài khoản phân tích khu vực sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "Khu vực sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "Sử dụng khu vực sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "Công đoạn"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "Số công đoạn"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "Công đoạn"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "Nhật ký năng xuất của khu vực sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "Khu vực sản xuất"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Thô] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[Khu vực sản xuất] %s"
|
||||
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/zh_CN.po
Normal file
229
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Emily Jia <eji@odoo.com>, 2023
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "分析账户"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "分析行"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr "分析账户,其中的成本和收入条目将用于制造订单的财务管理。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr "分析账户,其中的成本和收入条目将用于制造订单的财务管理。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "物料清单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "物料清单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BoM计数"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "类别"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "从BOM计算价格"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr "只是对生产的产品用产品和物料表相关的作业计算产品的价格"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "记录的成本"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "额外的单位成本"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "日记账项目"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "制造订单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "制造订单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "制造业订单计数"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "MO分析账户行"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr "实时发布部件和运营成本的分析会计条目。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "产品变体"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "生产订单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "显示计价"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "库存移动"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "库存规则"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "计价"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "WC分析账户行"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "工作中心"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "工作中心使用情况"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "工单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "工单计数"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "工单"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "工作中心生产力日志"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "工作中心"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
228
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/zh_TW.po
Normal file
228
odoo-bringout-oca-ocb-mrp_account/mrp_account/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,228 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mrp_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:53+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_bom__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__analytic_account_id
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
#, python-format
|
||||
msgid "Analytic Account"
|
||||
msgstr "分析帳戶"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "分析項目"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_production__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place "
|
||||
"for financial management of the manufacturing order."
|
||||
msgstr "將在其中進行成本和收入項目以進行製造訂單財務管理的分析帳戶。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_bom__analytic_account_id
|
||||
msgid ""
|
||||
"Analytic account in which cost and revenue entries will take place for "
|
||||
"financial management of the manufacturing order."
|
||||
msgstr "將在其中進行成本和收入項目以進行製造訂單的財務管理的分析帳戶。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "物料清單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Bills of Materials"
|
||||
msgstr "物料清單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__bom_count
|
||||
msgid "BoM Count"
|
||||
msgstr "BOM數量"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_line__category
|
||||
msgid "Category"
|
||||
msgstr "類別"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_product
|
||||
#: model:ir.actions.server,name:mrp_account.action_compute_price_bom_template
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid "Compute Price from BoM"
|
||||
msgstr "從BOM計算成本"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_ext_form_view2
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_product_view_form_normal_inherit_extended
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.product_variant_easy_edit_view_bom_inherit
|
||||
msgid ""
|
||||
"Compute the price of the product using products and operations of related "
|
||||
"bill of materials, for manufactured products only."
|
||||
msgstr "使用相關物料清單BOM的產品和操作計算產品的價格(僅使用於製造產品)。"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workcenter_productivity__cost_already_recorded
|
||||
msgid "Cost Recorded"
|
||||
msgstr "已記錄的成本"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__extra_cost
|
||||
msgid "Extra Unit Cost"
|
||||
msgstr "額外單位成本"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "日記帳項目"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields.selection,name:mrp_account.selection__account_analytic_line__category__manufacturing_order
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "製造訂單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_ids
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.account_analytic_account_view_form_mrp
|
||||
#, python-format
|
||||
msgid "Manufacturing Orders"
|
||||
msgstr "製造訂單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__production_count
|
||||
msgid "Manufacturing Orders Count"
|
||||
msgstr "製造訂單數量"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__mo_analytic_account_line_id
|
||||
msgid "Mo Analytic Account Line"
|
||||
msgstr "MO分析帳戶項目"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,help:mrp_account.field_mrp_workcenter__costs_hour_account_id
|
||||
msgid ""
|
||||
"Posts analytical accounting entries in real time for both component and "
|
||||
"operational costs."
|
||||
msgstr ""
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "產品"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "產品款式"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "製造訂單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_production__show_valuation
|
||||
msgid "Show Valuation"
|
||||
msgstr "顯示估值"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "庫存移動"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_stock_rule
|
||||
msgid "Stock Rule"
|
||||
msgstr "庫存規則"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model_terms:ir.ui.view,arch_db:mrp_account.mrp_production_form_view_inherited
|
||||
msgid "Valuation"
|
||||
msgstr "計價"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_mrp_workorder__wc_analytic_account_line_id
|
||||
msgid "Wc Analytic Account Line"
|
||||
msgstr "Wc 分析賬戶明細"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter
|
||||
msgid "Work Center"
|
||||
msgstr "工作中心"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_routing_workcenter
|
||||
msgid "Work Center Usage"
|
||||
msgstr "工作中心使用情況"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workorder
|
||||
msgid "Work Order"
|
||||
msgstr "工單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workorder_count
|
||||
msgid "Work Order Count"
|
||||
msgstr "工單數量"
|
||||
|
||||
#. module: mrp_account
|
||||
#: code:addons/mrp_account/models/analytic_account.py:0
|
||||
#, python-format
|
||||
msgid "Work Orders"
|
||||
msgstr "工單"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model,name:mrp_account.model_mrp_workcenter_productivity
|
||||
msgid "Workcenter Productivity Log"
|
||||
msgstr "工作中心產能日誌"
|
||||
|
||||
#. module: mrp_account
|
||||
#: model:ir.model.fields,field_description:mrp_account.field_account_analytic_account__workcenter_ids
|
||||
msgid "Workcenters"
|
||||
msgstr "工作中心"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/stock_move.py:0
|
||||
#, python-format
|
||||
msgid "[Raw] %s"
|
||||
msgstr "[Raw] %s"
|
||||
|
||||
#. module: mrp_account
|
||||
#. odoo-python
|
||||
#: code:addons/mrp_account/models/mrp_production.py:0
|
||||
#: code:addons/mrp_account/models/mrp_workorder.py:0
|
||||
#, python-format
|
||||
msgid "[WC] %s"
|
||||
msgstr "[WC] %s"
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from . import analytic_account
|
||||
from . import mrp_bom
|
||||
from . import mrp_workcenter
|
||||
from . import mrp_workorder
|
||||
from . import mrp_production
|
||||
from . import mrp_routing
|
||||
from . import product
|
||||
from . import stock_move
|
||||
from . import stock_rule
|
||||
from . import account_move
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,28 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = "account.move.line"
|
||||
|
||||
def _get_invoiced_qty_per_product(self):
|
||||
# Replace the kit-type products with their components
|
||||
qties = defaultdict(float)
|
||||
res = super()._get_invoiced_qty_per_product()
|
||||
invoiced_products = self.env['product.product'].concat(*res.keys())
|
||||
bom_kits = self.env['mrp.bom']._bom_find(invoiced_products, company_id=self.company_id[:1].id, bom_type='phantom')
|
||||
for product, qty in res.items():
|
||||
bom_kit = bom_kits[product]
|
||||
if bom_kit:
|
||||
invoiced_qty = product.uom_id._compute_quantity(qty, bom_kit.product_uom_id, round=False)
|
||||
factor = invoiced_qty / bom_kit.product_qty
|
||||
dummy, bom_sub_lines = bom_kit.explode(product, factor)
|
||||
for bom_line, bom_line_data in bom_sub_lines:
|
||||
qties[bom_line.product_id] += bom_line.product_uom_id._compute_quantity(bom_line_data['qty'], bom_line.product_id.uom_id)
|
||||
else:
|
||||
qties[product] += qty
|
||||
return qties
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
|
||||
|
||||
class AccountAnalyticAccount(models.Model):
|
||||
_inherit = 'account.analytic.account'
|
||||
_description = 'Analytic Account'
|
||||
|
||||
production_ids = fields.One2many('mrp.production', 'analytic_account_id', string='Manufacturing Orders')
|
||||
production_count = fields.Integer("Manufacturing Orders Count", compute='_compute_production_count')
|
||||
bom_ids = fields.One2many('mrp.bom', 'analytic_account_id', string='Bills of Materials')
|
||||
bom_count = fields.Integer("BoM Count", compute='_compute_bom_count')
|
||||
workcenter_ids = fields.One2many('mrp.workcenter', 'costs_hour_account_id', string='Workcenters')
|
||||
workorder_count = fields.Integer("Work Order Count", compute='_compute_workorder_count')
|
||||
|
||||
@api.depends('production_ids')
|
||||
def _compute_production_count(self):
|
||||
for account in self:
|
||||
account.production_count = len(account.production_ids)
|
||||
|
||||
@api.depends('bom_ids')
|
||||
def _compute_bom_count(self):
|
||||
for account in self:
|
||||
account.bom_count = len(account.bom_ids)
|
||||
|
||||
@api.depends('workcenter_ids.order_ids', 'production_ids.workorder_ids')
|
||||
def _compute_workorder_count(self):
|
||||
for account in self:
|
||||
account.workorder_count = len(account.workcenter_ids.order_ids | account.production_ids.workorder_ids)
|
||||
|
||||
def action_view_mrp_production(self):
|
||||
self.ensure_one()
|
||||
result = {
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": "mrp.production",
|
||||
"domain": [['id', 'in', self.production_ids.ids]],
|
||||
"name": _("Manufacturing Orders"),
|
||||
'view_mode': 'tree,form',
|
||||
"context": {'default_analytic_account_id': self.id},
|
||||
}
|
||||
if len(self.production_ids) == 1:
|
||||
result['view_mode'] = 'form'
|
||||
result['res_id'] = self.production_ids.id
|
||||
return result
|
||||
|
||||
def action_view_mrp_bom(self):
|
||||
self.ensure_one()
|
||||
result = {
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": "mrp.bom",
|
||||
"domain": [['id', 'in', self.bom_ids.ids]],
|
||||
"name": _("Bills of Materials"),
|
||||
'view_mode': 'tree,form',
|
||||
"context": {'default_analytic_account_id': self.id},
|
||||
}
|
||||
if self.bom_count == 1:
|
||||
result['view_mode'] = 'form'
|
||||
result['res_id'] = self.bom_ids.id
|
||||
return result
|
||||
|
||||
def action_view_workorder(self):
|
||||
self.ensure_one()
|
||||
result = {
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": "mrp.workorder",
|
||||
"domain": [['id', 'in', (self.workcenter_ids.order_ids | self.production_ids.workorder_ids).ids]],
|
||||
"context": {"create": False},
|
||||
"name": _("Work Orders"),
|
||||
'view_mode': 'tree',
|
||||
}
|
||||
return result
|
||||
|
||||
|
||||
class AccountAnalyticLine(models.Model):
|
||||
_inherit = 'account.analytic.line'
|
||||
|
||||
category = fields.Selection(selection_add=[('manufacturing_order', 'Manufacturing Order')])
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
class MrpBom(models.Model):
|
||||
_inherit = 'mrp.bom'
|
||||
|
||||
analytic_account_id = fields.Many2one('account.analytic.account', 'Analytic Account', company_dependent=True, copy=True,
|
||||
help="Analytic account in which cost and revenue entries will take place for financial management of the manufacturing order.")
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue