mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-20 14:31:59 +02:00
remove purchase_price_diff - removed in OCB 19.0
🤖 assisted by claude
This commit is contained in:
parent
b40c2a44d5
commit
aaf99d54e5
78 changed files with 0 additions and 3782 deletions
|
|
@ -1,50 +0,0 @@
|
||||||
# WMS Accounting
|
|
||||||
|
|
||||||
|
|
||||||
WMS Accounting module
|
|
||||||
======================
|
|
||||||
This module adds the price difference account. Used in standard perpetual valuation.
|
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pip install odoo-bringout-oca-ocb-purchase_price_diff
|
|
||||||
```
|
|
||||||
|
|
||||||
## Dependencies
|
|
||||||
|
|
||||||
This addon depends on:
|
|
||||||
- purchase_stock
|
|
||||||
|
|
||||||
## Manifest Information
|
|
||||||
|
|
||||||
- **Name**: WMS Accounting
|
|
||||||
- **Version**: 1.1
|
|
||||||
- **Category**: Hidden
|
|
||||||
- **License**: LGPL-3
|
|
||||||
- **Installable**: False
|
|
||||||
|
|
||||||
## Source
|
|
||||||
|
|
||||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `purchase_price_diff`.
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
- Overview: doc/OVERVIEW.md
|
|
||||||
- Architecture: doc/ARCHITECTURE.md
|
|
||||||
- Models: doc/MODELS.md
|
|
||||||
- Controllers: doc/CONTROLLERS.md
|
|
||||||
- Wizards: doc/WIZARDS.md
|
|
||||||
- Reports: doc/REPORTS.md
|
|
||||||
- Security: doc/SECURITY.md
|
|
||||||
- Install: doc/INSTALL.md
|
|
||||||
- Usage: doc/USAGE.md
|
|
||||||
- Configuration: doc/CONFIGURATION.md
|
|
||||||
- Dependencies: doc/DEPENDENCIES.md
|
|
||||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
|
||||||
- FAQ: doc/FAQ.md
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
# Architecture
|
|
||||||
|
|
||||||
```mermaid
|
|
||||||
flowchart TD
|
|
||||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
|
||||||
V --> C[Controllers]
|
|
||||||
V --> W[Wizards – Transient Models]
|
|
||||||
C --> M[Models and ORM]
|
|
||||||
W --> M
|
|
||||||
M --> R[Reports]
|
|
||||||
DX[Data XML] --> M
|
|
||||||
S[Security – ACLs and Groups] -. enforces .-> M
|
|
||||||
|
|
||||||
subgraph Purchase_price_diff Module - purchase_price_diff
|
|
||||||
direction LR
|
|
||||||
M:::layer
|
|
||||||
W:::layer
|
|
||||||
C:::layer
|
|
||||||
V:::layer
|
|
||||||
R:::layer
|
|
||||||
S:::layer
|
|
||||||
DX:::layer
|
|
||||||
end
|
|
||||||
|
|
||||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
|
||||||
```
|
|
||||||
|
|
||||||
Notes
|
|
||||||
- Views include tree/form/kanban templates and report templates.
|
|
||||||
- Controllers provide website/portal routes when present.
|
|
||||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
|
||||||
- Data XML loads data/demo records; Security defines groups and access.
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
# Configuration
|
|
||||||
|
|
||||||
Refer to Odoo settings for purchase_price_diff. Configure related models, access rights, and options as needed.
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
# Controllers
|
|
||||||
|
|
||||||
This module does not define custom HTTP controllers.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
# Dependencies
|
|
||||||
|
|
||||||
This addon depends on:
|
|
||||||
|
|
||||||
- [purchase_stock](https://github.com/bringout/oca-ocb-warehouse/tree/81e6496fce389797413505803016d3ac487ede13/odoo-bringout-oca-ocb-purchase_stock)
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
# FAQ
|
|
||||||
|
|
||||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
|
||||||
- Q: How to enable? A: Start server with --addon purchase_price_diff or install in UI.
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
# Install
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pip install odoo-bringout-oca-ocb-purchase_price_diff"
|
|
||||||
# or
|
|
||||||
uv pip install odoo-bringout-oca-ocb-purchase_price_diff"
|
|
||||||
```
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
# Models
|
|
||||||
|
|
||||||
Detected core models and extensions in purchase_price_diff.
|
|
||||||
|
|
||||||
```mermaid
|
|
||||||
classDiagram
|
|
||||||
class product_template
|
|
||||||
class account_move_line
|
|
||||||
class product_category
|
|
||||||
class product_template
|
|
||||||
```
|
|
||||||
|
|
||||||
Notes
|
|
||||||
- Classes show model technical names; fields omitted for brevity.
|
|
||||||
- Items listed under _inherit are extensions of existing models.
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
# Overview
|
|
||||||
|
|
||||||
Packaged Odoo addon: purchase_price_diff. Provides features documented in upstream Odoo 16 under this addon.
|
|
||||||
|
|
||||||
- Source: OCA/OCB 16.0, addon purchase_price_diff
|
|
||||||
- License: LGPL-3
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
# Reports
|
|
||||||
|
|
||||||
This module does not define custom reports.
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
# Security
|
|
||||||
|
|
||||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
|
||||||
|
|
||||||
Default Odoo security applies:
|
|
||||||
- Base user access through standard groups
|
|
||||||
- Model access inherited from dependencies
|
|
||||||
- No custom row-level security rules
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
# Troubleshooting
|
|
||||||
|
|
||||||
- Ensure Python and Odoo environment matches repo guidance.
|
|
||||||
- Check database connectivity and logs if startup fails.
|
|
||||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
# Usage
|
|
||||||
|
|
||||||
Start Odoo including this addon (from repo root):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon purchase_price_diff
|
|
||||||
```
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
# Wizards
|
|
||||||
|
|
||||||
This module does not include UI wizards.
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
||||||
|
|
||||||
from . import models
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
||||||
|
|
||||||
{
|
|
||||||
'name': 'WMS Accounting',
|
|
||||||
'version': '1.1',
|
|
||||||
'summary': 'Inventory, Logistic, Valuation, Accounting',
|
|
||||||
'description': """
|
|
||||||
WMS Accounting module
|
|
||||||
======================
|
|
||||||
This module adds the price difference account. Used in standard perpetual valuation.
|
|
||||||
""",
|
|
||||||
'depends': ['purchase_stock'],
|
|
||||||
'data': [
|
|
||||||
'views/product_views.xml',
|
|
||||||
],
|
|
||||||
'category': 'Hidden',
|
|
||||||
'sequence': 16,
|
|
||||||
'auto_install': True,
|
|
||||||
'license': 'LGPL-3',
|
|
||||||
}
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "بنود اليومية "
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "حساب فرق السعر"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "المنتج"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "فئة المنتج"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"يُستخدم هذا الحساب في التقييم الآلي للمخزون لتسجيل فرق السعر بين أمر الشراء "
|
|
||||||
"وفاتورة المورد المرتبطة به، عند تصديق فاتورة المورد. "
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"سوف يُستخدم هذا الحساب لاحتساب الفرق بين سعر الشراء والتكلفة المحاسبية. "
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Jumshud Sultanov <cumshud@gmail.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Jurnal Sətirləri"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Məhsul"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Məhsul Kateqoriyası"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
|
||||||
# KeyVillage, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Elena Varbanova, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Elena Varbanova, 2024\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Счетоводна Операция"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Сметка разлика в цената"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Продукт"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Категория продукт"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Този акаунт се използва при автоматизирана оценка на инвентара, за да се "
|
|
||||||
"запише разликата в цената между поръчка за покупка и свързаната с нея сметка"
|
|
||||||
" на доставчик, когато се валидира тази сметка на доставчика."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Тази сметка ще бъде използвана, за да остойности ценовата разлика между "
|
|
||||||
"покупната цена и счетоводните разходи."
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 10:33+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Stavka dnevnika"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Konto razlike u cijeni"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Artikal"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategorija artikla"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Harcogourmet, 2023
|
|
||||||
# jabelchi, 2023
|
|
||||||
# Quim - eccit <quim@eccit.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Quim - eccit <quim@eccit.com>, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Apunt comptable"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Compte diferencia de preu"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Producte"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categoria del producte"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Aquest compte s'utilitza en la valoració d'inventari automatitzat per "
|
|
||||||
"registrar la diferència de preu entre una comanda de compra i la factura de "
|
|
||||||
"proveïdor relacionada en validar aquesta factura de proveïdor."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Aquest compte s'utilitzarà per valorar la diferència de preus entre el preu "
|
|
||||||
"de compra i preu comptabilitzat."
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Jiří Podhorecký, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Jiří Podhorecký, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Položka deníku"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Účet rozdílu ceny"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategorie výrobku"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Tento účet se používá při automatizovaném oceňování zásob k zaznamenání "
|
|
||||||
"cenového rozdílu mezi objednávkou a související fakturou dodavatele při "
|
|
||||||
"ověřování této faktury dodavatele."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Tento účet bude použit k ohodnocení cenového rozdílu mezi kupní cenou a "
|
|
||||||
"účetními náklady."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Sanne Kristensen <sanne@vkdata.dk>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Journalpost"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Konto for prisdifferencer"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Produktkategori"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Denne konto bruges i en automatiseret værdiansættelse af lageret til at "
|
|
||||||
"registrere prisforskellen mellem købsordre og dens relaterede "
|
|
||||||
"leverandørregning, ved godkendelse af denne leverandørregning."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Denne konto vil blive brugt til at værdisætte pris forskellen mellem "
|
|
||||||
"købspris og regnskabs omkostninger."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Larissa Manderfeld, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Larissa Manderfeld, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Buchungszeile"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Preisdifferenzkonto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Produktkategorie"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Dieses Konto wird in der automatisierten Bestandsbewertung verwendet, um die"
|
|
||||||
" Preisdifferenz zwischen einer Bestellung und der zugehörigen "
|
|
||||||
"Lieferantenrechnung beim Validieren dieser Lieferantenrechnung zu erfassen."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Dieses Konto wird für die Buchung von Preisdifferenzen zwischen dem "
|
|
||||||
"Einkaufspreis und den buchhalterischen Kosten verwendet."
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 2023\n"
|
|
||||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Partida individual"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Cuenta diferencia de precio"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Producto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categoría de producto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Esta cuenta se utiliza en la valoración de inventario automatizada para "
|
|
||||||
"registrar la diferencia de precio entre un pedido de compra y su factura de "
|
|
||||||
"proveedor relacionada al validar esta factura de proveedor."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Esta cuenta se utilizará para valorar la diferencia de precios entre el "
|
|
||||||
"precio de compra y precio contabilizado."
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Iran Villalobos López, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Iran Villalobos López, 2023\n"
|
|
||||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_MX\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Apunte contable"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Cuenta de diferencia de precio"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Producto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categoría del producto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Esta cuenta se utiliza en la valoración de inventario automatizada para "
|
|
||||||
"registrar la diferencia de precio entre una orden de compra y su factura de "
|
|
||||||
"proveedor relacionada al validar esta factura de proveedor."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Esta cuenta se utilizará para valorar la diferencia de precios entre el "
|
|
||||||
"precio de compra y precio contabilizado."
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Algo Kärp <algokarp@gmail.com>, 2023
|
|
||||||
# Marek Pontus, 2023
|
|
||||||
# Patrick-Jordan Kiudorv, 2023
|
|
||||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
|
||||||
# Triine Aavik <triine@avalah.ee>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Triine Aavik <triine@avalah.ee>, 2023\n"
|
|
||||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: et\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Andmiku kanderida"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Hinnavahe konto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Toode"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Toote kategooria"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Seda kontot kasutatakse automatiseeritud laoseisu hindamisel ostutellimuse "
|
|
||||||
"ja sellega seotud hankija arve hinnavahe registreerimiseks selle müüja arve "
|
|
||||||
"kinnitamisel."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Seda kontot kasutatakse ostuhinna ja raamatupidamisliku väärtuse "
|
|
||||||
"hinnaerinevuse kajastamiseks."
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Hanna Kheradroosta, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 2023\n"
|
|
||||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: fa\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "آیتم روزنامه"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "قیمت حساب های متفاوت"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "محصول"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "دسته محصول"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"این حساب در ارزیابی خودکار موجودی برای ثبت تفاوت قیمت بین یک سفارش خرید و "
|
|
||||||
"صورتحساب فروشنده مربوطه آن هنگام تایید این صورتحساب فروشنده استفاده میشود."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"این حساب برای ارزش گذاری تفاوت قیمت بین قیمت خرید و هزینه حسابداری استفاده "
|
|
||||||
"می شود."
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
|
||||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
|
||||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Päiväkirjatapahtuma"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Hintaerotuksen tili"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Tuote"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Tuotekategoria"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Tätä tiliä käytetään automatisoidussa varaston arvonmäärityksessä kirjaamaan"
|
|
||||||
" ostotilauksen ja siihen liittyvän toimittajan laskun välinen hintaero, kun "
|
|
||||||
"kyseinen toimittajan lasku vahvistetaan."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Tätä tiliä käytetään ostohinnan ja kirjanpitokustannusten välisen hintaeron "
|
|
||||||
"arvostamiseen."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Jolien De Paepe, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Écriture comptable"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Compte d'écart de prix"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produit"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Catégorie de produit"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Ce compte est utilisé dans la valorisation automatisée des stocks pour "
|
|
||||||
"enregistrer la différence de prix entre un bon de commande et sa facture "
|
|
||||||
"fournisseur quand celle-ci est validée."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Ce compte sera utilisé pour évaluer les différences de prix entre les prix "
|
|
||||||
"d'achat et les coûts comptables."
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Qaidjohar Barbhaya, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Journal Item"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Product"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Product Category"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
|
||||||
# NoaFarkash, 2023
|
|
||||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "תנועת יומן"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "חשבון להערכת שווי מלאי"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "מוצר"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "קטגורית מוצר"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"חשבון זה משמש להערכת שווי מלאי אוטומטית כדי לרשום את הפרש המחירים בין הזמנת "
|
|
||||||
"רכש לחשבונית הספק הקשורה אליה בעת אימות חשבונית ספק זו."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"חשבון זה ישמש להערכת הפרש המחירים בין מחיר הרכישה לבין העלות חשבונאית."
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Wil Odoo, 2024
|
|
||||||
# Ujjawal Pathak, 2025
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "जर्नल आइटम"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "उत्पाद"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "उत्पाद श्रेणी"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Tina Milas, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Bole <bole@dajmi5.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Stavka dnevnika"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Konto razlike u cijeni"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Proizvod"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategorija proizvoda"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Ovaj konto koristi se za automatsko vrednovanje zaliha u svrhu bilježenja "
|
|
||||||
"razlike u cijeni između naloga za nabavu i računa dobavljača s kojim je "
|
|
||||||
"povezan pri validaciji računa dobavljača."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Ovaj konto će se koristiti za knjiženje razlike između nabavne cijene i "
|
|
||||||
"troška računovodstva."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
|
||||||
# gezza <geza.nagy@oregional.hu>, 2023
|
|
||||||
# krnkris, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: krnkris, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Napló tétel"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Árkülönbözet számla"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Termék"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Termékkategória"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Ez a főkönyvi számla szolgál a tényleges bekerülési érték és a "
|
|
||||||
"nyilvántartási ár /elszámoló ár/ közötti árkülönbözet értékének "
|
|
||||||
"meghatározásához."
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Ryanto The <ry.the77@gmail.com>, 2023
|
|
||||||
# graha hutamawuri, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Abe Manyo, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Item Jurnal"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Akun Perbedaan Harga"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produk"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategori Produk"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Akun ini digunakan di valuasi inventory otomatis untuk mencatat perbedaan "
|
|
||||||
"harga di antara SPB dan tagihan vendor terkait saat memvalidasi tagihan "
|
|
||||||
"vendor ini."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Akun ini akan digunakan untuk menilai perbedaan harga antara harga pembelian"
|
|
||||||
" dan modal akuntansi."
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Kristófer Arnþórsson, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Vara"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Vöruflokkur"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Movimento contabile"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Conto differenza di prezzo"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Prodotto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categoria prodotto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Conto utilizzato, nella valutazione automatica del magazzino, per registrare"
|
|
||||||
" la differenza di prezzo tra un ordine di acquisto e la relativa fattura "
|
|
||||||
"fornitore quando viene confermata la fattura."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Conto utilizzato per valutare la differenza di prezzo tra prezzo di acquisto"
|
|
||||||
" e costo contabile."
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Noma Yuki, 2023
|
|
||||||
# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2023\n"
|
|
||||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ja\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "仕訳明細"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "価格差異勘定"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "プロダクト"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "プロダクトカテゴリ"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr "このアカウントは、自動在庫評価で使用され、このベンダー請求書を検証するときに、発注書と関連するベンダー請求書の間の価格差を記録します。"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr "このアカウントは、購入価格と会計コストの価格差を評価するために使用されます。"
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
|
||||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "ប្រភេទទិនានុប្បវត្ត"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "ផលិតផល"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "ប្រភេទផលិតផល"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Linkup <link-up@naver.com>, 2023
|
|
||||||
# JH CHOI <hwangtog@gmail.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "분개 항목"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "가격 차이 계정"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "품목"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "품목 카테고리"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"이 계정은 자동 재고 평가에 사용되어 이 공급업체 청구서를 확인할 때 발주서와 관련 공급업체 청구서 간의 가격 차이를 기록합니다."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr "이 계정은 구매 가격과 회계 비용 간의 가격 차이를 평가하는 데 사용됩니다."
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "ລານການລົງບັນຊີ"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "ສິນຄ້າ"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "ໝວດສິນຄ້າ"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Arminas Grigonis <arminas@versada.lt>, 2023
|
|
||||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Žurnalo įrašas"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Kainų skirtumo sąskaita"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produktas"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Produkto kategorija"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Ši sąskaita naudojama automatiniame inventoriaus vertinime, kad būtų "
|
|
||||||
"įrašytas kainų skirtumas tarp pirkimo užsakymo ir su juo susijusios tiekėjo "
|
|
||||||
"kainos, kai patvirtinama ši tiekėjo sąskaita."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Ši sąskaita bus naudojama įvertinti kainų skirtumus tarp pirkimo kainos ir "
|
|
||||||
"apskaitos kaštų."
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# JanisJanis <jbojars@gmail.com>, 2023
|
|
||||||
# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
|
||||||
# Will Sensors, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Kontējums"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Ceny starpības konts"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkts"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Produkta Kategorija"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Šo kontu izmanto automatizētajā krājumu novērtēšanā, lai reģistrētu cenu "
|
|
||||||
"starpību starp pirkuma pasūtījumu un ar to saistīto piegādātāja rēķinu, "
|
|
||||||
"apstiprinot šo piegādātāja rēķinu."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Niyas Raphy, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Niyas Raphy, 2023\n"
|
|
||||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ml\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "ജേർണൽ ഐറ്റം"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "വില വ്യത്യാസ അക്കൗണ്ട്"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "പ്രോഡക്റ്റ്"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "പ്രോഡക്റ്റ് കാറ്റഗറി"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Журналын бичилт"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Өртөгийн зөрүүний данс"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Бараа"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Барааны ангилал"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Энэ данс нь худалдан авалтын захиалгын үнэ болон нэхэмжлэлийн үнэ хоорондын "
|
|
||||||
"зөрүүг тусгахад зориулсан данс юм."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Энэ данс нь худалдан авалтын үнэ болон санхүүгийн өртгийн хоорондох зөрүүг "
|
|
||||||
"бүртгэх данс юм."
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Mehjabin Farsana, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Mehjabin Farsana, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Item Jurnal"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produk"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategori Produk"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Marius Stedjan <marius@stedjan.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 2023\n"
|
|
||||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nb\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Bilagslinje"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Prisdifferansekonto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Produktkategori"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Boekingsregel"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Prijsverschillen rekening"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Product"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Productcategorie"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Deze rekening wordt gebruikt voor de automatische voorraadwaardering, om het"
|
|
||||||
" prijsverschil tussen de inkooporder en de leveranciersfactuur te "
|
|
||||||
"registreren, wanneer de leveranciersfactuur wordt bevestigd."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Deze rekening wordt gebruikt om de prijsverschillen tussen inkoopprijs en "
|
|
||||||
"rekeningprijs te berekenen."
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Dariusz Żbikowski <darek@krokus.com.pl>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2023
|
|
||||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2023
|
|
||||||
# Paweł Wodyński <pw@myodoo.pl>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Paweł Wodyński <pw@myodoo.pl>, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Pozycja zapisu"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Konto różnic cenowych"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategoria produktu"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"To konto jest używane w automatycznej wycenie zapasów do rejestrowania "
|
|
||||||
"różnicy w cenie między zamówieniem zakupu a powiązanym rachunkiem od "
|
|
||||||
"dostawcy podczas sprawdzania poprawności tego rachunku od dostawcy."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"To konto będzie stosowane do rejestrowania różnic cenowych między ceną "
|
|
||||||
"zakupu i ceną ewidencyjną."
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2023
|
|
||||||
# Nuno Silva <nuno.silva@arxi.pt>, 2023
|
|
||||||
# Manuela Silva <mmsrs@sky.com>, 2023
|
|
||||||
# Maitê Dietze, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Maitê Dietze, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Item do Diário"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Conta de Diferença de Preços"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Artigo"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categoria do Artigo"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Esta conta será usada para valorizar a diferença de preço entre preço de "
|
|
||||||
"compra e preço de custo."
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Item de Diário"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Conta da Diferença de Preço"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categoria de Produtos"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Esta conta é usada em avaliação automatizada de estoque para registrar a "
|
|
||||||
"diferença de preço entre um pedido de compra e sua conta de fornecedor "
|
|
||||||
"relacionada ao validar esta conta de fornecedor."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Esta conta será usada para avaliar diferença de preço entre preço de compra "
|
|
||||||
"e custo contábil."
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 10:33+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Foldi Robert <foldirobert@nexterp.ro>, 2023
|
|
||||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Element jurnal"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Cont diferență de preț"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produs"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Categorie produs"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Acest cont este utilizat în evaluare automatizată a inventarului pentru a "
|
|
||||||
"înregistra diferența de preț între o comandă de Achiziție și factura "
|
|
||||||
"furnizorului aferent atunci când se validează această factură de furnizor."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Acest cont va fi utilizat pentru a evalua diferența de preț între prețul de "
|
|
||||||
"achiziție și costul contabil."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Элемент журнала"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Счёт разницы цен"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Продукт"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Категория продукта"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Эта учетная запись используется для автоматической оценки запасов для записи"
|
|
||||||
" разницы цен между заказом на поставку и соответствующим счетом поставщика "
|
|
||||||
"при проверке этого счета поставщика."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Этот счёт будет использован для оценки разницы между ценой покупки и учетной"
|
|
||||||
" себестоимостью."
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2023
|
|
||||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Položka účtovnej knihy"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Cenový rozdiel účtu"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategória produktu"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Tento účet sa používa pri automatizovanom oceňovaní zásob na zaznamenanie "
|
|
||||||
"cenového rozdielu medzi objednávkou a súvisiacim dokladom dodávateľa pri "
|
|
||||||
"overovaní tohto dokladu dodávateľa."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Tento účet bude používaný na hodnotenie cenového rozdielu medzi nákupnou "
|
|
||||||
"cenou a účtovným nákladom."
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Postavka"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Konto razlik v ceni"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Proizvod"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategorija proizvoda"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023\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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Stavka izveštaja"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Račun/konto razlike u ceni"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Proizvod"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Kategorija proizvoda"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Ovaj račun/konto se koristi kod automatske procene zaliha za evidentiranje "
|
|
||||||
"razlike u ceni između naloga za kupovinu i njegovog povezanog računa "
|
|
||||||
"dobavljača prilikom validacije ovog računa dabavljača."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Ovaj račun/konto će se koristiti za vrednovanje razlike u ceni između "
|
|
||||||
"nabavne cene i računovodstvenih troškova."
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Simon S, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
|
||||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
|
||||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Transaktion"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Prisskillnadskonto"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produkt"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Produktkategori"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Det här kontot används vid automatisk lagervärdering för att registrera "
|
|
||||||
"prisskillnaden mellan en inköpsorder och dess tillhörande leverantörsfaktura"
|
|
||||||
" vid valideringen av leverantörsfakturan."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Detta konto kommer att användas för att värdera prisskillnaden mellan "
|
|
||||||
"inköpspris och bokfört anskaffningsvärde."
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Odoo Thaidev <odoothaidev@gmail.com>, 2023
|
|
||||||
# Wichanon Jamwutthipreecha, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "รายการบันทึก"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Price Difference Account"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "สินค้า"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "หมวดหมู่สินค้า"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
|
||||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Murat Kaplan <muratk@projetgrup.com>, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Yevmiye Kalemi"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Fiyat Farkı Hesabı"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Ürün"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Ürün Kategorisi"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Bu hesap, bu tedarikçi faturasını doğrularken satınalma siparişi ile ilgili "
|
|
||||||
"satıcı faturası arasındaki fiyat farkını kaydetmek için otomatik envanter "
|
|
||||||
"değerlemesinde kullanılır."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Bu hesap, satın alma fiyatı ile maliyet tutarı arasındaki fiyat farkı değeri"
|
|
||||||
" için kullanılacaktır."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Martin Trigaux, 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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Елемент журналу"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Рахунок різниці в ціні"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Товар"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Категорія товару"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Цей обліковий запис використовується для автоматичної оцінки запасів для "
|
|
||||||
"запису різниці цін між замовленням на купівлю та відповідним рахунком "
|
|
||||||
"постачальника під час перевірки цього рахунка постачальника."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Цей рахунок буде використовуватись для обліку різниці між ціною в рахунку за"
|
|
||||||
" товар та ціною в замовленні на купівлю."
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Thi Huong Nguyen, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+0000\n"
|
|
||||||
"Last-Translator: Thi Huong Nguyen, 2024\n"
|
|
||||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: vi\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "Hạng mục bút toán"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "Tài khoản chênh lệch giá"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Sản phẩm"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "Danh mục sản phẩm"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr ""
|
|
||||||
"Tài khoản này được dùng trong quá trình định mức giá trị tồn kho tự động để "
|
|
||||||
"ghi nhận chênh lệch giá giữa một đơn mua hàng và hóa đơn mua hàng liên quan "
|
|
||||||
"khi bạn xác nhận hóa đơn này."
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr ""
|
|
||||||
"Tài khoản này được sử dụng để đánh giá chênh lệch giá giữa giá mua và chi "
|
|
||||||
"phí theo kế toán."
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Martin Trigaux, 2023
|
|
||||||
# Jeffery CHEN <jeffery9@gmail.com>, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "日记账项目"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "价格差异科目"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "产品"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "产品类别"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr "此账户用于自动库存评估,以在验证此供应商账单时记录采购订单与其相关供应商账单之间的价格差异。"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr "这个科目用来评估采购价格和会计成本的价格差异"
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * purchase_price_diff
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Benson <Benson.Dr@Gmail.com>, 2023
|
|
||||||
# Tony Ng, 2023
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-02-02 10:33+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-02-02 12:25+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: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_account_move_line
|
|
||||||
msgid "Journal Item"
|
|
||||||
msgstr "日記賬項目"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,field_description:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid "Price Difference Account"
|
|
||||||
msgstr "價格差額賬戶"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "產品"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model,name:purchase_price_diff.model_product_category
|
|
||||||
msgid "Product Category"
|
|
||||||
msgstr "產品類別"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_product__property_account_creditor_price_difference
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_template__property_account_creditor_price_difference
|
|
||||||
msgid ""
|
|
||||||
"This account is used in automated inventory valuation to record the price "
|
|
||||||
"difference between a purchase order and its related vendor bill when "
|
|
||||||
"validating this vendor bill."
|
|
||||||
msgstr "此賬戶用於存貨自動估值工作。核實供應商賬單時,若賬單上的價格與採購訂單不同,此賬戶會記錄有關差額。"
|
|
||||||
|
|
||||||
#. module: purchase_price_diff
|
|
||||||
#: model:ir.model.fields,help:purchase_price_diff.field_product_category__property_account_creditor_price_difference_categ
|
|
||||||
msgid ""
|
|
||||||
"This account will be used to value price difference between purchase price "
|
|
||||||
"and accounting cost."
|
|
||||||
msgstr "此賬戶用於記錄採購價格及會計成本之間的價格差額估值。"
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
||||||
|
|
||||||
from . import account_move_line
|
|
||||||
from . import product
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from odoo import models
|
|
||||||
|
|
||||||
class AccountMoveLine(models.Model):
|
|
||||||
_inherit = 'account.move.line'
|
|
||||||
|
|
||||||
def _get_price_diff_account(self):
|
|
||||||
self.ensure_one()
|
|
||||||
if self.product_id.cost_method == 'standard':
|
|
||||||
debit_pdiff_account = self.product_id.property_account_creditor_price_difference \
|
|
||||||
or self.product_id.categ_id.property_account_creditor_price_difference_categ
|
|
||||||
debit_pdiff_account = self.move_id.fiscal_position_id.map_account(debit_pdiff_account)
|
|
||||||
return debit_pdiff_account
|
|
||||||
return super()._get_price_diff_account()
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
||||||
|
|
||||||
from odoo import fields, models
|
|
||||||
|
|
||||||
|
|
||||||
class ProductCategory(models.Model):
|
|
||||||
_inherit = "product.category"
|
|
||||||
|
|
||||||
property_account_creditor_price_difference_categ = fields.Many2one(
|
|
||||||
'account.account', string="Price Difference Account",
|
|
||||||
company_dependent=True,
|
|
||||||
help="This account will be used to value price difference between purchase price and accounting cost.")
|
|
||||||
|
|
||||||
|
|
||||||
class ProductTemplate(models.Model):
|
|
||||||
_name = 'product.template'
|
|
||||||
_inherit = 'product.template'
|
|
||||||
|
|
||||||
property_account_creditor_price_difference = fields.Many2one(
|
|
||||||
'account.account', string="Price Difference Account", company_dependent=True,
|
|
||||||
help="This account is used in automated inventory valuation to "\
|
|
||||||
"record the price difference between a purchase order and its related vendor bill when validating this vendor bill.")
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
<record id="view_category_property_form" model="ir.ui.view">
|
|
||||||
<field name="name">product.category.property.form.inherit.stock</field>
|
|
||||||
<field name="model">product.category</field>
|
|
||||||
<field name="inherit_id" ref="account.view_category_property_form"/>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<field name="property_account_income_categ_id" position="before">
|
|
||||||
<field name="property_account_creditor_price_difference_categ"
|
|
||||||
domain="[('deprecated','=',False)]" groups="account.group_account_readonly"
|
|
||||||
attrs="{'invisible':[('property_valuation', '=', 'manual_periodic')]}"/>
|
|
||||||
</field>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="product_template_form_view" model="ir.ui.view">
|
|
||||||
<field name="name">product.normal.form.inherit.stock</field>
|
|
||||||
<field name="model">product.template</field>
|
|
||||||
<field name="inherit_id" ref="account.product_template_form_view"/>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<field name="property_account_expense_id" position="after">
|
|
||||||
<field name="property_account_creditor_price_difference" domain="[('deprecated','=',False)]" attrs="{'readonly':[('purchase_ok', '=', 0)]}" groups="account.group_account_readonly"/>
|
|
||||||
</field>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
</odoo>
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
[project]
|
|
||||||
name = "odoo-bringout-oca-ocb-purchase_price_diff"
|
|
||||||
version = "16.0.0"
|
|
||||||
description = "WMS Accounting - Inventory, Logistic, Valuation, Accounting"
|
|
||||||
authors = [
|
|
||||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
|
||||||
]
|
|
||||||
dependencies = [
|
|
||||||
"odoo-bringout-oca-ocb-purchase_stock>=16.0.0",
|
|
||||||
"requests>=2.25.1"
|
|
||||||
]
|
|
||||||
readme = "README.md"
|
|
||||||
requires-python = ">= 3.11"
|
|
||||||
classifiers = [
|
|
||||||
"Development Status :: 5 - Production/Stable",
|
|
||||||
"Intended Audience :: Developers",
|
|
||||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
|
||||||
"Programming Language :: Python :: 3",
|
|
||||||
"Programming Language :: Python :: 3.11",
|
|
||||||
"Programming Language :: Python :: 3.12",
|
|
||||||
"Topic :: Office/Business",
|
|
||||||
]
|
|
||||||
|
|
||||||
[project.urls]
|
|
||||||
homepage = "https://github.com/bringout/0"
|
|
||||||
repository = "https://github.com/bringout/0"
|
|
||||||
|
|
||||||
[build-system]
|
|
||||||
requires = ["hatchling"]
|
|
||||||
build-backend = "hatchling.build"
|
|
||||||
|
|
||||||
[tool.hatch.metadata]
|
|
||||||
allow-direct-references = true
|
|
||||||
|
|
||||||
[tool.hatch.build.targets.wheel]
|
|
||||||
packages = ["purchase_price_diff"]
|
|
||||||
|
|
||||||
[tool.rye]
|
|
||||||
managed = true
|
|
||||||
dev-dependencies = [
|
|
||||||
"pytest>=8.4.1",
|
|
||||||
]
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue