mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 08:32:05 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
47
odoo-bringout-oca-ocb-sale_project_stock/README.md
Normal file
47
odoo-bringout-oca-ocb-sale_project_stock/README.md
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# Sale Project - Sale Stock
|
||||
|
||||
Adds a full traceability of inventory operations on the profitability report.
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-sale_project_stock
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- sale_project
|
||||
- sale_stock
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Sale Project - Sale Stock
|
||||
- **Version**: 1.0
|
||||
- **Category**: Sales
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `sale_project_stock`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-sale_project_stock/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-sale_project_stock/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Sale_project_stock Module - sale_project_stock
|
||||
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.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for sale_project_stock. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [sale_project](../../odoo-bringout-oca-ocb-sale_project)
|
||||
- [sale_stock](../../odoo-bringout-oca-ocb-sale_stock)
|
||||
4
odoo-bringout-oca-ocb-sale_project_stock/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-sale_project_stock/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon sale_project_stock or install in UI.
|
||||
7
odoo-bringout-oca-ocb-sale_project_stock/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-sale_project_stock/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-sale_project_stock"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-sale_project_stock"
|
||||
```
|
||||
12
odoo-bringout-oca-ocb-sale_project_stock/doc/MODELS.md
Normal file
12
odoo-bringout-oca-ocb-sale_project_stock/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in sale_project_stock.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class sale_order_line
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-sale_project_stock/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-sale_project_stock/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: sale_project_stock. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon sale_project_stock
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-sale_project_stock/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-sale_project_stock/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-sale_project_stock/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-sale_project_stock/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# 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
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-sale_project_stock/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-sale_project_stock/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon sale_project_stock
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-sale_project_stock/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-sale_project_stock/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
43
odoo-bringout-oca-ocb-sale_project_stock/pyproject.toml
Normal file
43
odoo-bringout-oca-ocb-sale_project_stock/pyproject.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-sale_project_stock"
|
||||
version = "16.0.0"
|
||||
description = "Sale Project - Sale Stock - Adds a full traceability of inventory operations on the profitability report."
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-sale_project>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-sale_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 = ["sale_project_stock"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Sale Project - Sale Stock',
|
||||
'version': '1.0',
|
||||
'description': 'Adds a full traceability of inventory operations on the profitability report.',
|
||||
'summary': 'Adds a full traceability of inventory operations on the profitability report.',
|
||||
'license': 'LGPL-3',
|
||||
'category': 'Sales',
|
||||
'depends': ['sale_project', 'sale_stock'],
|
||||
'data': [
|
||||
'views/stock_move_views.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
}
|
||||
Binary file not shown.
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "لم يتم العثور على حركة مخزون "
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "بند أمر المبيعات"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"تمنحك هذه القائمة قابلية تتبع عمليات المخزون بشكل كامل\n"
|
||||
" لمنتج محدد. بإمكانك التصفية حسب المنتج لرؤية \n"
|
||||
" كافة التحركات السابقة للمنتج. "
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "التحويلات "
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Satış Sifarişi Sətri"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferlər"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: aleksandar ivanov, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Ред на поръчка за продажби"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"С това меню можете да проследявате изцяло операциите по\n"
|
||||
" инвентаризацията на определен продукт. Можете да филтрирате продукта,\n"
|
||||
" за да видите всичките му минали и бъдещи движения."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Трансфери"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-06-09 14:06+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nije nađeno skladišno kretanje"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajnog naloga"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Prijenosi"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Jonatan Gk, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Quim - eccit <quim@eccit.com>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "No s' ha trobat cap moviment a la pila principal"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Línia comanda de venda"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Aquest menú li ofereix la traçabilitat completa de les operacions d'estoc "
|
||||
"d'un producte específic. Pot filtrar el producte per veure tots els "
|
||||
"moviments passats o futurs d'aquest."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferències"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# SlavekB <slavek.banko@axis.cz>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: SlavekB <slavek.banko@axis.cz>, 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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nenalezen žádný přesun zásob"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Řádek zakázky"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Toto menu vám dává plnou sledovatelnost operací inventáře na konkrétním "
|
||||
"produktu. Můžete filtrovat produkt a zobrazit všechny minulé nebo budoucí "
|
||||
"pohyby produktu."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Přesuny"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Ingen lagerbevægelse fundet"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Salgsordrelinje"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Denne menu giver dig fuld sporbarhed over inventar\n"
|
||||
" operationer for et specifikt produkt. Du kan filtrere på produktet\n"
|
||||
" for at se alle tidligere og fremtidige bevægelser for produktet."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Overførsler"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Keine Lagerbuchung gefunden"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Verkaufsauftragszeile"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Durch diese Anwendung können Sie sämtliche Lieferungen und\n"
|
||||
" Bestandsänderungen Ihrer Produkte verfolgen. Suchen sie einfach\n"
|
||||
" das Produkt und verfolgen Sie die gesamte Liefer- und \n"
|
||||
" Auftragshistorie der Vergangenheit und Zukunft."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transfers"
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "No se encontró movimiento de stock"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Línea de pedido de venta"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Este menú le ofrece la trazabilidad completa de las operaciones de stock \n"
|
||||
" de un producto específico. Puede filtrar el producto\n"
|
||||
" para ver todos los movimientos pasados o futuros del mismo."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Traslados"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "No se encontró ningún movimiento de existencias"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Línea de la orden de venta"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Este menú le ofrece la trazabilidad completa de las operaciones de inventario \n"
|
||||
" de un producto específico. Puede filtrar el producto\n"
|
||||
" para ver todos los movimientos pasados o futuros del mismo."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Traslados"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Piia Paurson <piia@avalah.ee>, 2022
|
||||
# Egon Raamat <egon@avalah.ee>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Egon Raamat <egon@avalah.ee>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Laosiirdeid ei leitud"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Müügitellimuse rida"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"See menüü annab teile konkreetse toote laoseisu täieliku jälgitavuse. Saate "
|
||||
"toote filtreerida, et näha kõiki toote varasemaid või tulevasi liikumisi."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Siirded"
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Hanna Kheradroosta, 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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "هیچ انتقال موجودی پیدا نشد"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "سطر سفارشفروش"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"این منو به شما قابلیت ردیابی کامل عملیات موجودی روی یک محصول خاص\n"
|
||||
" را می دهد. میتوانید روی محصول فیلتر کنید تا تمام\n"
|
||||
" انتقالات گذشته یا آینده محصول را ببینید."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "انتقالات"
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Varastosiirtoa ei löytynyt"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Myyntitilausrivi"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Tämä valikko antaa sinulle tietyn tuotteen varastotoimintojen täydellisen "
|
||||
"jäljitettävyyden. Voit suodattaa tuotteen nähdäksesi kaikki tuotteen aiemmat"
|
||||
" tai tulevat muutokset."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Siirrot"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Manon Rondou, 2025\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Aucun mouvement de stock trouvé"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Ligne de commande client"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Ce menu vous donne la traçabilité complète des opérations\n"
|
||||
" d'inventaire pour un produit donné. Vous pouvez filtrer sur le produit\n"
|
||||
" pour voir tous les déplacements passés et futurs de ce produit."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferts"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: NoaFarkash, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "לא נמצאו תנועות מלאי"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "שורת הזמנת לקוח"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"תפריט זה נותן לך מעקב מלא אחר פעולות המלאי \n"
|
||||
"על מוצר מסוים. ניתן לבצע סינון על המוצר\n"
|
||||
" כדי לראות את כל התנועות בעבר או התנועות העתידיות שלו."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "העברות"
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "बिक्री आदेश पंक्ति"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "ट्रांसफ़र"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Mario Jureša <mario.juresa@uvid.hr>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2024\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nije nađeno skladišno kretanje"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajnog naloga"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
" Ovaj meni nudi punu sljedivost skladišnih\n"
|
||||
" operacija određenog proizvoda. Moguće je filtrirati na proizvodu\n"
|
||||
" kako bi vidjeli sve prošle ili buduće skladišne prijenose proizvoda."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Prijenosi"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nincs készletmozgás"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Értékesítési megrendelés sor"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
" Ez a menü konkrét termékre vonatkozó készletműveletek \n"
|
||||
" teljes nyomonkövetését nyújtja. Szűrést \n"
|
||||
" végezhet a termékhez kapcsolódó múltbeli és jövőbeli mozgásokra egyaránt."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transzferek"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Tidak ada pergerakan stok yang ditemukan"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Detail Order Penjualan"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Menu ini memungkinkan Anda untuk menelusuri penuh operasi stok persediaan "
|
||||
"pada produk tertentu. Anda dapat menyaring produk untuk melihat semua "
|
||||
"pergerakan masa lalu atau masa depan untuk produk tersebut."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transfer"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Sölupöntunarlína"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nessun movimento di magazzino trovato"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Riga ordine di vendita"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Questo menù offre la completa tracciabilità delle operazioni\n"
|
||||
" di inventario per uno specifico prodotto. Per vedere tutti i\n"
|
||||
" movimenti passati o futuri è possibile filtrare sul prodotto."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Trasferimenti"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "在庫移動が見つかりません"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "販売オーダ明細"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"このメニューは、特定の製品に対する在庫操作の完全なトレーサビリティを提供します。\n"
|
||||
"製品をフィルタリングして、製品の過去または将来の動きをすべて表示できます。"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "運送"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "លំដាប់បញ្ជាទិញ"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "ផ្ទេរ"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "재고이동을 찾을수 없습니다"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "판매 주문 내역"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"이 메뉴는 재고의 전체 추적 가능성을 제공합니다.\n"
|
||||
" 특정 품목에 대한 작업. 품목에 대한 과거 또는 미래의\n"
|
||||
" 움직임을 모두 보려면 품목을 필터링 할 수 있습니다."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "이동"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "ລາຍການສິນຄ້າທີ່ສັ່ງຊື້"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pardavimo užsakymo eilutė"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Šis meniu suteikia jums pilną inventoriaus operacijų\n"
|
||||
"tam tikram produktui sekamumą. Galite filtruoti produktą,\n"
|
||||
"kad pamatytumėte visus jo praeities ar ateities judėjimus."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Pervedimai"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pasūtījuma Rinda"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Pārvedumi"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "സെയിൽസ് ഓർഡർ ലൈൻ"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "ട്രാൻസ്ഫർ"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Munkhbaatar g <muuguu17@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2022
|
||||
# Otgonbayar.A <gobi.mn@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Агуулахын хөдөлгөөн олдсонгүй"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Борлуулалтын захиалгын мөр"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Энэ меню нь тухайлсан барааны бүх ажилбарыг бүрэн мөшгиж хөтлүүлдэг. Бараан "
|
||||
"дээр шүүж өнгөрсөн болон ирээдүйн бүх хөдөлгөөнийг харах боломжтой. "
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Гүйлгээ"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Barisan Pesanan Jualan"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Pemindahan"
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Rune Restad, 2024\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Ingen lagerbevegelse funnet"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Salgsordrelinje"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Denne menyen gir deg full sporbarhet av lageroperasjoner \n"
|
||||
" på et spesifikt produkt. Du kan filtrere på produktet \n"
|
||||
" for å se alle tidligere eller fremtidige bevegelser for produkte"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Overføringer"
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Geen voorraadverplaatsing gevonden"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Verkooporderregel"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Deze menu geeft je de volledige traceerbaarheid van voorraadbewerking op een specifiek product. Je kunt op het product\n"
|
||||
"filteren om alle vorige en toekomstige verplaatsingen voor het product te zien."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Verplaatsingen"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Paweł Wodyński <pw@myodoo.pl>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nie znaleziono żadnego przesunięcia magazynowego"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pozycja zamówienia sprzedaży"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"To menu zapewnia pełną identyfikowalność operacji\n"
|
||||
"na zasobach dla określonego produktu. Możesz filtrować według produktu\n"
|
||||
"aby zobaczyć wszystkie poprzednie lub przyszłe przesunięcia produktu."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Przekazy"
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Nuno Silva <nuno.silva@arxi.pt>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linhas da Ordem de Vendas"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Este menu dá-lhe a rastreabilidade total das operações de inventário\n"
|
||||
" num artigo específico. Pode filtrar no artigo para ver\n"
|
||||
" todos os movimentos futuros ou passados do artigo."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferências"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nenhum movimento de estoque encontrado."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linha do pedido de vendas"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Este menu oferece a você a rastreabilidade completa de operações\n"
|
||||
" de inventário em um produto específico. Você pode filtrar o produto\n"
|
||||
"para ver todos as movimentações passadas ou futuras para o produto."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferências"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nu a fost găsită nicio mișcare de stoc"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linie comandă vânzare"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Acest meniu vă oferă trasabilitatea completă a operațiunilor de stoc pentru "
|
||||
"un anumit produs. Puteți filtra după produs pentru a vedea toate mișcările "
|
||||
"anterioare sau viitoare pentru acel produs."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferuri"
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# alenafairy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: alenafairy, 2023\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Перемещение складских запасов не найдено"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Позиция заказа на продажу"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Это меню позволяет вам полностью отслеживать инвентарные\n"
|
||||
" операции по конкретному продукту. Вы можете отфильтровать продукт,\n"
|
||||
" чтобы увидеть все прошлые или будущие движения продукта."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Перемещения"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-06-09 14:06+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Položka objednávok"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Toto menu vám dáva plnú sledovateľnosť zásobových\n"
|
||||
"operácií na špecifický produkt. Môžete filtrovať produkt\n"
|
||||
"aby ste videli všetky minulé alebo budúce pohyby produktu."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Prevody"
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Postavka prodajnega naloga"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Prenosi"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Milan Bojovic, 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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Nije pronađeno kretanje inventara"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linija porudžbenice"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Ovaj meni vam daje potpunu sledljivost inventara\n"
|
||||
" operacije na određenom proizvodu. Možete filtrirati proizvod\n"
|
||||
" da vidite sva prošla ili buduća kretanja za proizvod."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Prenos"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Simon S, 2022
|
||||
# Lasse Larsson, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Lasse Larsson, 2023\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Ingen lagerflytt hittad"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Orderrad"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Den här menyn ger dig full spårbarhet av lagertransaktioner\n"
|
||||
" för en specifik produkt. Du kan filtrera på produkten\n"
|
||||
" för att se alla tidigare eller framtida rörelser för produkten."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Flyttar"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "ไม่พบการเคลื่อนย้ายสต็อก"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "ไลน์คำสั่งขาย"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"เมนูนี้ช่วยให้คุณตรวจสอบย้อนกลับสินค้าคงคลังได้อย่างครบถ้วน\n"
|
||||
" การดำเนินการกับสินค้าเฉพาะ คุณสามารถกรองสินค้าได้\n"
|
||||
" เพื่อดูความเคลื่อนไหวของสินค้าในอดีตหรืออนาคตทั้งหมด"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "โอน"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2022
|
||||
# Güven YILMAZ <guvenyilmaz@outlook.com.tr>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Stok hareketi bulunamadı"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Satış Sipariş Satırı"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Bu menü, belirli bir ürünün tam izlenebilirliğini ve\n"
|
||||
" envanter işlemlerini verir. Üründe filtreleme yaparak\n"
|
||||
" ürünün tüm geçmiş ve gelecek hareketlerini görebilirisiniz."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Transferler"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Не знайдено складського переміщення"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Рядок замовлення"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Це меню дає вам повне відстеження операції\n"
|
||||
"інвентаризації по конкретному товару. Ви можете фільтрувати товари,\n"
|
||||
"щоби побачити всі минулі або майбутні переміщення для товару."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Переміщення"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "Không tìm thấy dịch chuyển tồn kho"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Dòng đơn bán hàng"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"Menu này cung cấp cho bạn khả năng truy xuất đầy đủ các hoạt động\n"
|
||||
" tồn kho theo một sản phẩm cụ thể. Bạn có thể lọc theo sản phẩm\n"
|
||||
" để xem tất cả các dịch chuyển trong quá khứ hoặc tương lai của sản phẩm."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "Lệnh chuyển hàng"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "没有库存移动"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "销售订单行"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"此菜单能让您完整的追溯某一特定产品的盘点\n"
|
||||
"作业。您可以在产品上筛选此产品过去和将来的的所有的调拨。 "
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "调拨"
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_project_stock
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-06-09 14:06+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "No stock move found"
|
||||
msgstr "未發現庫存移動"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.model,name:sale_project_stock.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "銷售訂單明細"
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model_terms:ir.actions.act_window,help:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid ""
|
||||
"This menu gives you the full traceability of inventory\n"
|
||||
" operations on a specific product. You can filter on the product\n"
|
||||
" to see all the past or future movements for the product."
|
||||
msgstr ""
|
||||
"此選單能讓您完整的追蹤某一特定產品的盤點\n"
|
||||
"作業。您可以在產品上篩選此產品過去和將來的的所有的移動."
|
||||
|
||||
#. module: sale_project_stock
|
||||
#: model:ir.actions.act_window,name:sale_project_stock.stock_move_per_sale_order_line_action
|
||||
msgid "Transfers"
|
||||
msgstr "轉帳"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import sale_order_line
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
class SaleOrderLine(models.Model):
|
||||
_inherit = 'sale.order.line'
|
||||
|
||||
def _get_action_per_item(self):
|
||||
""" Get action per Sales Order Item to display the stock moves linked
|
||||
|
||||
:returns: Dict containing id of SOL as key and the action as value
|
||||
"""
|
||||
action_per_sol = super()._get_action_per_item()
|
||||
stock_move_action = self.env.ref('sale_project_stock.stock_move_per_sale_order_line_action').id
|
||||
stock_move_ids_per_sol = {}
|
||||
if self.user_has_groups('stock.group_stock_user'):
|
||||
stock_move_read_group = self.env['stock.move']._read_group([('sale_line_id', 'in', self.ids)], ['sale_line_id', 'ids:array_agg(id)'], ['sale_line_id'])
|
||||
stock_move_ids_per_sol = {res['sale_line_id'][0]: res['ids'] for res in stock_move_read_group}
|
||||
for sol in self:
|
||||
stock_move_ids = stock_move_ids_per_sol.get(sol.id, [])
|
||||
if not sol.is_service and stock_move_ids:
|
||||
action_per_sol[sol.id] = stock_move_action, stock_move_ids[0] if len(stock_move_ids) == 1 else False
|
||||
return action_per_sol
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="stock_move_per_sale_order_line_action" model="ir.actions.act_window">
|
||||
<field name="name">Transfers</field>
|
||||
<field name="res_model">stock.move</field>
|
||||
<field name="view_mode">tree,kanban,pivot,graph,form</field>
|
||||
<field name="domain">[('sale_line_id', '=', active_id)]</field>
|
||||
<field name="context">{}</field>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_smiling_face">
|
||||
No stock move found
|
||||
</p>
|
||||
<p>
|
||||
This menu gives you the full traceability of inventory
|
||||
operations on a specific product. You can filter on the product
|
||||
to see all the past or future movements for the product.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue