diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/README.md b/odoo-bringout-oca-ocb-purchase_price_diff/README.md deleted file mode 100644 index 829eaf46..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/README.md +++ /dev/null @@ -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 diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/ARCHITECTURE.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/ARCHITECTURE.md deleted file mode 100644 index 79cd8498..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/ARCHITECTURE.md +++ /dev/null @@ -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. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/CONFIGURATION.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/CONFIGURATION.md deleted file mode 100644 index b577eda3..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/CONFIGURATION.md +++ /dev/null @@ -1,3 +0,0 @@ -# Configuration - -Refer to Odoo settings for purchase_price_diff. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/CONTROLLERS.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/CONTROLLERS.md deleted file mode 100644 index f628e770..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/CONTROLLERS.md +++ /dev/null @@ -1,3 +0,0 @@ -# Controllers - -This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/DEPENDENCIES.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/DEPENDENCIES.md deleted file mode 100644 index 4b258705..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/DEPENDENCIES.md +++ /dev/null @@ -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) diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/FAQ.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/FAQ.md deleted file mode 100644 index 9ae4662b..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/FAQ.md +++ /dev/null @@ -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. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/INSTALL.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/INSTALL.md deleted file mode 100644 index 86bbae36..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/INSTALL.md +++ /dev/null @@ -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" -``` diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/MODELS.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/MODELS.md deleted file mode 100644 index 7146fdf6..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/MODELS.md +++ /dev/null @@ -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. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/OVERVIEW.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/OVERVIEW.md deleted file mode 100644 index 8a24650b..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/OVERVIEW.md +++ /dev/null @@ -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 diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/REPORTS.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/REPORTS.md deleted file mode 100644 index e0ea35fb..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/REPORTS.md +++ /dev/null @@ -1,3 +0,0 @@ -# Reports - -This module does not define custom reports. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/SECURITY.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/SECURITY.md deleted file mode 100644 index e07da9da..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/SECURITY.md +++ /dev/null @@ -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 diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/TROUBLESHOOTING.md deleted file mode 100644 index 56853cb7..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/TROUBLESHOOTING.md +++ /dev/null @@ -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. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/USAGE.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/USAGE.md deleted file mode 100644 index 52c98281..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/USAGE.md +++ /dev/null @@ -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 -``` diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/doc/WIZARDS.md b/odoo-bringout-oca-ocb-purchase_price_diff/doc/WIZARDS.md deleted file mode 100644 index 48e790dc..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/doc/WIZARDS.md +++ /dev/null @@ -1,3 +0,0 @@ -# Wizards - -This module does not include UI wizards. diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/__init__.py b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/__init__.py deleted file mode 100644 index dc5e6b69..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. - -from . import models diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/__manifest__.py b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/__manifest__.py deleted file mode 100644 index 858277fc..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/__manifest__.py +++ /dev/null @@ -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', -} diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/af.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/af.po deleted file mode 100644 index 9c5b8c5e..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/af.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/am.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/am.po deleted file mode 100644 index dd7dc142..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/am.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ar.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ar.po deleted file mode 100644 index fa83c5b3..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ar.po +++ /dev/null @@ -1,62 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Malaz Abuidris , 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 "" -"سوف يُستخدم هذا الحساب لاحتساب الفرق بين سعر الشراء والتكلفة المحاسبية. " diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/az.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/az.po deleted file mode 100644 index d2acff3a..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/az.po +++ /dev/null @@ -1,58 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Jumshud Sultanov , 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 , 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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/be.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/be.po deleted file mode 100644 index 1d4b44e0..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/be.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/bg.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/bg.po deleted file mode 100644 index 8a248745..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/bg.po +++ /dev/null @@ -1,66 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Maria Boyadjieva , 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 "" -"Тази сметка ще бъде използвана, за да остойности ценовата разлика между " -"покупната цена и счетоводните разходи." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/bs.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/bs.po deleted file mode 100644 index c384803c..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/bs.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ca.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ca.po deleted file mode 100644 index 01bd7b20..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ca.po +++ /dev/null @@ -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 , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/cs.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/cs.po deleted file mode 100644 index 20c07933..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/cs.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# karolína schusterová , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/da.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/da.po deleted file mode 100644 index 0222a522..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/da.po +++ /dev/null @@ -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 , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/de.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/de.po deleted file mode 100644 index ad95385d..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/de.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/es.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/es.po deleted file mode 100644 index ab6d08ff..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/es.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/es_MX.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/es_MX.po deleted file mode 100644 index e200af49..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/es_MX.po +++ /dev/null @@ -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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/et.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/et.po deleted file mode 100644 index eaa396d4..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/et.po +++ /dev/null @@ -1,67 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Algo Kärp , 2023 -# Marek Pontus, 2023 -# Patrick-Jordan Kiudorv, 2023 -# Eneli Õigus , 2023 -# Triine Aavik , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fa.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fa.po deleted file mode 100644 index 6359de47..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fa.po +++ /dev/null @@ -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 "" -"این حساب برای ارزش گذاری تفاوت قیمت بین قیمت خرید و هزینه حسابداری استفاده " -"می شود." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fi.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fi.po deleted file mode 100644 index 6a14167c..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fi.po +++ /dev/null @@ -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 , 2023 -# Tuomo Aura , 2023 -# Ossi Mantylahti , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fr.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fr.po deleted file mode 100644 index e298029e..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/fr.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/gu.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/gu.po deleted file mode 100644 index dcdc4632..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/gu.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/he.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/he.po deleted file mode 100644 index d5a29b1a..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/he.po +++ /dev/null @@ -1,63 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Yihya Hugirat , 2023 -# NoaFarkash, 2023 -# ZVI BLONDER , 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 , 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 "" -"חשבון זה ישמש להערכת הפרש המחירים בין מחיר הרכישה לבין העלות חשבונאית." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hi.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hi.po deleted file mode 100644 index 780a2ebe..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hi.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hr.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hr.po deleted file mode 100644 index e06e1472..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hr.po +++ /dev/null @@ -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 , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hu.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hu.po deleted file mode 100644 index fd2ef8ca..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hu.po +++ /dev/null @@ -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 , 2023 -# gezza , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hy.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hy.po deleted file mode 100644 index d195ca42..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/hy.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/id.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/id.po deleted file mode 100644 index d5bc1db1..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/id.po +++ /dev/null @@ -1,66 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Ryanto The , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/is.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/is.po deleted file mode 100644 index 0fb456f9..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/is.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/it.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/it.po deleted file mode 100644 index 37732d59..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/it.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ja.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ja.po deleted file mode 100644 index 6e089f93..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ja.po +++ /dev/null @@ -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) , 2023 -# Martin Trigaux, 2023 -# Ryoko Tsuda , 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 , 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 "このアカウントは、購入価格と会計コストの価格差を評価するために使用されます。" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/km.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/km.po deleted file mode 100644 index 6c63d4aa..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/km.po +++ /dev/null @@ -1,59 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Samkhann Seang , 2023 -# Lux Sok , 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 , 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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ko.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ko.po deleted file mode 100644 index d63e91db..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ko.po +++ /dev/null @@ -1,61 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Linkup , 2023 -# JH CHOI , 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 "이 계정은 구매 가격과 회계 비용 간의 가격 차이를 평가하는 데 사용됩니다." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lo.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lo.po deleted file mode 100644 index 9a9632cc..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lo.po +++ /dev/null @@ -1,59 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Phoxaysy Sengchanthanouvong , 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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lt.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lt.po deleted file mode 100644 index c686f563..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lt.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Arminas Grigonis , 2023 -# Linas Versada , 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ų." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lv.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lv.po deleted file mode 100644 index 9fe42810..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/lv.po +++ /dev/null @@ -1,67 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# JanisJanis , 2023 -# Konstantins Zabogonskis , 2023 -# Martin Trigaux, 2023 -# Arnis Putniņš , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ml.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ml.po deleted file mode 100644 index 76c12f84..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ml.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/mn.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/mn.po deleted file mode 100644 index 527dd853..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/mn.po +++ /dev/null @@ -1,63 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Baskhuu Lodoikhuu , 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 "" -"Энэ данс нь худалдан авалтын үнэ болон санхүүгийн өртгийн хоорондох зөрүүг " -"бүртгэх данс юм." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ms.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ms.po deleted file mode 100644 index 6b14cc02..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ms.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/nb.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/nb.po deleted file mode 100644 index 3daba28a..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/nb.po +++ /dev/null @@ -1,59 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Marius Stedjan , 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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/nl.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/nl.po deleted file mode 100644 index f2216635..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/nl.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/no.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/no.po deleted file mode 100644 index 841ab609..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/no.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pl.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pl.po deleted file mode 100644 index 910cd226..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pl.po +++ /dev/null @@ -1,67 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Dariusz Żbikowski , 2023 -# Martin Trigaux, 2023 -# Grzegorz Grzelak , 2023 -# Judyta Kaźmierczak , 2023 -# Paweł Wodyński , 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 , 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ą." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pt.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pt.po deleted file mode 100644 index 4d99fed8..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pt.po +++ /dev/null @@ -1,63 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Ricardo Martins , 2023 -# Nuno Silva , 2023 -# Manuela Silva , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pt_BR.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pt_BR.po deleted file mode 100644 index 51f6dbc9..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/pt_BR.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/purchase_price_diff.pot b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/purchase_price_diff.pot deleted file mode 100644 index eb62d475..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/purchase_price_diff.pot +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ro.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ro.po deleted file mode 100644 index 252cc06f..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ro.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Foldi Robert , 2023 -# Dorin Hongu , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ru.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ru.po deleted file mode 100644 index 8afcc464..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ru.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Сергей Шебанин , 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 "" -"Этот счёт будет использован для оценки разницы между ценой покупки и учетной" -" себестоимостью." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sk.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sk.po deleted file mode 100644 index 44db6db2..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sk.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Rastislav Brencic , 2023 -# Jaroslav Bosansky , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sl.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sl.po deleted file mode 100644 index 35030b9f..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sl.po +++ /dev/null @@ -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 , 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 , 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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sq.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sq.po deleted file mode 100644 index 2822e859..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sq.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sr.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sr.po deleted file mode 100644 index 195a4a6c..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sr.po +++ /dev/null @@ -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 , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sv.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sv.po deleted file mode 100644 index edbe25f2..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sv.po +++ /dev/null @@ -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 , 2023 -# Anders Wallenquist , 2023 -# Jakob Krabbe , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sw.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sw.po deleted file mode 100644 index f63460b2..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/sw.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ta.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ta.po deleted file mode 100644 index d915feb1..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/ta.po +++ /dev/null @@ -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 "" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/th.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/th.po deleted file mode 100644 index 117b9f95..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/th.po +++ /dev/null @@ -1,65 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Odoo Thaidev , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/tr.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/tr.po deleted file mode 100644 index 8c3192a8..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/tr.po +++ /dev/null @@ -1,66 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Murat Durmuş , 2023 -# Martin Trigaux, 2023 -# Ertuğrul Güreş , 2023 -# Murat Kaplan , 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 , 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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/uk.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/uk.po deleted file mode 100644 index 439e5200..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/uk.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Alina Lisnenko , 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 "" -"Цей рахунок буде використовуватись для обліку різниці між ціною в рахунку за" -" товар та ціною в замовленні на купівлю." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/vi.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/vi.po deleted file mode 100644 index b5d271c6..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/vi.po +++ /dev/null @@ -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." diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/zh_CN.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/zh_CN.po deleted file mode 100644 index 1af59c94..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/zh_CN.po +++ /dev/null @@ -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 , 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 , 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 "这个科目用来评估采购价格和会计成本的价格差异" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/zh_TW.po b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/zh_TW.po deleted file mode 100644 index 40c43016..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/i18n/zh_TW.po +++ /dev/null @@ -1,59 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_price_diff -# -# Translators: -# Benson , 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 "此賬戶用於記錄採購價格及會計成本之間的價格差額估值。" diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/__init__.py b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/__init__.py deleted file mode 100644 index 715bc523..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/__init__.py +++ /dev/null @@ -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 diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/account_move_line.py b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/account_move_line.py deleted file mode 100644 index 36ccf7a8..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/account_move_line.py +++ /dev/null @@ -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() diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/product.py b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/product.py deleted file mode 100644 index 2f476468..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/models/product.py +++ /dev/null @@ -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.") diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/views/product_views.xml b/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/views/product_views.xml deleted file mode 100644 index da671200..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/purchase_price_diff/views/product_views.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - product.category.property.form.inherit.stock - product.category - - - - - - - - - - product.normal.form.inherit.stock - product.template - - - - - - - - \ No newline at end of file diff --git a/odoo-bringout-oca-ocb-purchase_price_diff/pyproject.toml b/odoo-bringout-oca-ocb-purchase_price_diff/pyproject.toml deleted file mode 100644 index 1a612bf0..00000000 --- a/odoo-bringout-oca-ocb-purchase_price_diff/pyproject.toml +++ /dev/null @@ -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", -]