mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-18 04:12:06 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
48
odoo-bringout-oca-ocb-website_sale_wishlist/README.md
Normal file
48
odoo-bringout-oca-ocb-website_sale_wishlist/README.md
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# Shopper's Wishlist
|
||||
|
||||
|
||||
Allow shoppers of your eCommerce store to create personalized collections of products they want to buy and save them for future reference.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-website_sale_wishlist
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- website_sale
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Shopper's Wishlist
|
||||
- **Version**: 1.0
|
||||
- **Category**: Website/Website
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `website_sale_wishlist`.
|
||||
|
||||
## 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
|
||||
|
|
@ -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 Website_sale_wishlist Module - website_sale_wishlist
|
||||
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 website_sale_wishlist. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [website_sale](../../odoo-bringout-oca-ocb-website_sale)
|
||||
4
odoo-bringout-oca-ocb-website_sale_wishlist/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-website_sale_wishlist/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 website_sale_wishlist or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-website_sale_wishlist"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-website_sale_wishlist"
|
||||
```
|
||||
16
odoo-bringout-oca-ocb-website_sale_wishlist/doc/MODELS.md
Normal file
16
odoo-bringout-oca-ocb-website_sale_wishlist/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in website_sale_wishlist.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class product_wishlist
|
||||
class product_product
|
||||
class product_template
|
||||
class res_partner
|
||||
class res_users
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: website_sale_wishlist. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon website_sale_wishlist
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
41
odoo-bringout-oca-ocb-website_sale_wishlist/doc/SECURITY.md
Normal file
41
odoo-bringout-oca-ocb-website_sale_wishlist/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in website_sale_wishlist.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../website_sale_wishlist/security/ir.model.access.csv)**
|
||||
- 4 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
## Security Groups & Configuration
|
||||
|
||||
Security groups and permissions defined in:
|
||||
- **[website_sale_wishlist_security.xml](../website_sale_wishlist/security/website_sale_wishlist_security.xml)**
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../website_sale_wishlist/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
- **[website_sale_wishlist_security.xml](../website_sale_wishlist/security/website_sale_wishlist_security.xml)**
|
||||
- Security groups, categories, and XML-based rules
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
|
|
@ -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-website_sale_wishlist/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-website_sale_wishlist/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 website_sale_wishlist
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
42
odoo-bringout-oca-ocb-website_sale_wishlist/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-website_sale_wishlist/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-website_sale_wishlist"
|
||||
version = "16.0.0"
|
||||
description = "Shopper's Wishlist - Allow shoppers to enlist products"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-website_sale>=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 = ["website_sale_wishlist"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import controllers
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': "Shopper's Wishlist",
|
||||
'summary': 'Allow shoppers to enlist products',
|
||||
'description': """
|
||||
Allow shoppers of your eCommerce store to create personalized collections of products they want to buy and save them for future reference.
|
||||
""",
|
||||
'author': 'Odoo SA',
|
||||
'category': 'Website/Website',
|
||||
'version': '1.0',
|
||||
'depends': ['website_sale'],
|
||||
'data': [
|
||||
'security/website_sale_wishlist_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'views/website_sale_wishlist_template.xml',
|
||||
'views/snippets.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'website_sale_wishlist/static/src/**/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'website_sale_wishlist/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import json
|
||||
|
||||
from odoo.http import request, route
|
||||
from odoo.addons.website_sale.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
class WebsiteSaleWishlist(WebsiteSale):
|
||||
|
||||
@route(['/shop/wishlist/add'], type='json', auth="public", website=True)
|
||||
def add_to_wishlist(self, product_id, **kw):
|
||||
website = request.website
|
||||
pricelist = website.pricelist_id
|
||||
product = request.env['product.product'].browse(product_id)
|
||||
|
||||
price = product._get_combination_info_variant(
|
||||
pricelist=website.pricelist_id,
|
||||
)['price']
|
||||
|
||||
Wishlist = request.env['product.wishlist']
|
||||
if request.website.is_public_user():
|
||||
Wishlist = Wishlist.sudo()
|
||||
partner_id = False
|
||||
else:
|
||||
partner_id = request.env.user.partner_id.id
|
||||
|
||||
wish = Wishlist._add_to_wishlist(
|
||||
pricelist.id,
|
||||
pricelist.currency_id.id,
|
||||
request.website.id,
|
||||
price,
|
||||
product_id,
|
||||
partner_id
|
||||
)
|
||||
|
||||
if not partner_id:
|
||||
request.session['wishlist_ids'] = request.session.get('wishlist_ids', []) + [wish.id]
|
||||
|
||||
return wish
|
||||
|
||||
@route(['/shop/wishlist'], type='http', auth="public", website=True, sitemap=False)
|
||||
def get_wishlist(self, count=False, **kw):
|
||||
values = request.env['product.wishlist'].with_context(display_default_code=False).current()
|
||||
if count:
|
||||
return request.make_response(json.dumps(values.mapped('product_id').ids))
|
||||
|
||||
if not len(values):
|
||||
return request.redirect("/shop")
|
||||
|
||||
return request.render("website_sale_wishlist.product_wishlist", dict(wishes=values))
|
||||
|
||||
@route(['/shop/wishlist/remove/<model("product.wishlist"):wish>'], type='json', auth="public", website=True)
|
||||
def rm_from_wishlist(self, wish, **kw):
|
||||
if request.website.is_public_user():
|
||||
wish_ids = request.session.get('wishlist_ids') or []
|
||||
if wish.id in wish_ids:
|
||||
request.session['wishlist_ids'].remove(wish.id)
|
||||
request.session.touch()
|
||||
wish.sudo().unlink()
|
||||
else:
|
||||
wish.unlink()
|
||||
return True
|
||||
|
|
@ -0,0 +1,203 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktief"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Geldeenheid"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Eienaar"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Webtuiste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,208 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" قائمة الأمنيات "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>إضافة إلى قائمة الأمنيات "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> إزالة</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "نشط"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "أضف <span class=\"d-none d-md-inline\">إلى عربة التسوق</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "إضافة المنتج إلى عربة تسوقي لكن إبقاؤه في قائمة أمنياتي "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "إضافة إلى قائمة الأمنيات "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "إضافة إلى قائمة الأمنيات "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "جهة الاتصال"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "تواصل معنا"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "العملة"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "المنتج المستنسخ المدرج في قائمة الأمنيات لهذا الشريك. "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "قائمة أمنياتي"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "المالك"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "السعر"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "سعر المنتج عند إضافته لقائمة الأمنيات"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "قائمه الأسعار"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "قائمة الأسعار عند الإضافة"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "المنتج"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "متغير المنتج "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "قائمة أمنيات المنتج"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "صورة المنتج"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "قائمة أمنيات المتجر"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "إظهار قائمة الأمنيات الفارغة "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "الموقع الإلكتروني"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "قائمة الأمنيات"
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Bizimlə Əlaqə Saxlayın"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valyuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Sahibi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Qiymət"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Qiymət siyahısı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Məhsul"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Məhsul Çeşidi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "İstifadəçi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Veb sayt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,203 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Кантакт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Вэб-сайт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Camille Dantinne <cmd@odoo.com>, 2023
|
||||
# Elena Varbanova, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Elena Varbanova, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Отстранете</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Добави <span class=\"d-none d-md-inline\">в количката</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Добави към Любими"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Добави към Любими"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Свържете се с нас"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Валута"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Дублиран продукт от списъка с желания за този партньор."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Любими"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Собственик"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Цена"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Цена на продукта, когато е добавен в списъка с желания"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Ценова листа"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Ценова листа при добавяне"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Продуктов вариант"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Моят списък"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Снимка на продукта"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Уебсайт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Моят списък"
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-20 09:02+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Ukloni</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Dodaj na listu želja\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Dodaj <span class=\"d-none d-md-inline\">u košaricu</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Dodaj proizvod u moju košaricu, ali ga zadrži na listi želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "<i class=\"fa fa-heart\"/>\n Lista želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplicirani proizvod na listi želja za ovog partnera."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Moja lista želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Vlasnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cijena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Cijena proizvoda kada je dodan u listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cijenovnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Cjenik kada se doda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista želja proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Slika proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista želja za kupnju"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Prikaži praznu listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista želja"
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2022
|
||||
# Sandra Franch <sandra.franch@upc.edu>, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# jabelchi, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Llista de desitjos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Afegeix a la llista de desitjos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Eliminar</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Afegeix<span class=\"d-none d-md-inline\">a la cistella</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Afegeix el producte a la cistella però mantén-lo a la llista de preferits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Afegir a preferits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Afegeix a la llista de desitjos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contacta'ns"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Divisa"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Producte preferit duplicat per aquesta empresa."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Els meus preferits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Propietari"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Preu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Preu del producte quan s'ha afegit a la llista de preferits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Tarifa"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Llista de preus quan s’afegeix"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variants de producte"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Llista de preferits de producte"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Imatge del producte"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Llista de preferits de botiga"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Mostra la llista de desitjos buida"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Lloc web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Llista de preferits"
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Seznam přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Přidat na seznam přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/>Odstranit</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Přidat <span class=\"d-none d-md-inline\">do košíku</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Přidat produkt do košíku, ale nechat si jej v seznamu přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Přidat do seznamu přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Přidat na seznam přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontaktujte nás"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Měna"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplikovaný produkt v seznamu přání pro tohoto partnera."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "můj seznam přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Majitel"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Cena výrobku při jeho přidání do seznamu přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Ceník"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Ceník při přidání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta výrobku"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Seznam přání produktu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Obrázek produktu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Seznam přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Zobrazit prázdný seznam přání"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Seznam přání"
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sammi Iversen <sammi@vkdata.dk>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sammi Iversen <sammi@vkdata.dk>, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr "Favoritliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr "Tilføj til favoritliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Fjern</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Tilføj <span class=\"d-none d-md-inline\">til kurv</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Tilføj varen til kurven men behold varen i min ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Tilføj til ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Tilføj til favoritliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontakt os"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplikeret ønskeliste produkt for denne partner"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Min ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Ejer"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Pris"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Pris på varen, når den er blevet tilføjet på ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Prisliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Prisliste, når tilføjet"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varevariant"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produktbillede"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Ønskeliste i shoppen"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Vis Tom Ønskeseddel"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Hjemmeside"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Ønskeliste"
|
||||
|
|
@ -0,0 +1,208 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Auf die Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Entfernen</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "<span class=\"d-none d-md-inline\">In den Warenkorb</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Produkt zu Warenkorb hinzufügen und in Wunschliste behalten"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Auf die Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Auf die Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontaktieren Sie uns"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Währung"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplizierte Wunschliste für diesen Partner."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Meine Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Besitzer"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Preis"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Preis des Produkts, wenn es zur Wunschliste hinzugefügt wurde"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Preisliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Preisliste beim Hinzufügen"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariante"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Produkt-Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produktbild"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Shop-Wunschliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Leere Wunschliste anzeigen"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Wunschliste"
|
||||
|
|
@ -0,0 +1,174 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:18+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart\"/>\n"
|
||||
" Λίστα Επιθυμιών"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Αφαίρεση</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Σε Ισχύ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Προσθήκη του είδους στο καλάθι μου αλλά να παραμείνει στη Λίστα Επιθυμιών "
|
||||
"μου"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Προσθήκη στη Λίστα Επιθυμιών"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_ir_autovacuum
|
||||
msgid "Automatic Vacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Επαφή"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Νόμισμα"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία Ενημέρωση από"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Η δική μου Λίστα Επιθυμιών"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Ιδιοκτήτης"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "ΤΙΜΗ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Τιμή του είδους όταν είχε προστεθεί στη λίστα επιθυμιών"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Τιμοκατάλογος"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Τιμοκατάλογος όταν προστέθηκε"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Είδος"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Λίστα Επιθυμιών Καταστήματος"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Χρήστες"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Ιστότοπος"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
msgid "Wishlist"
|
||||
msgstr "Λίστα Επιθυμιών"
|
||||
|
|
@ -0,0 +1,210 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Añadir a lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Eliminar</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Añadir a la <span class=\"d-none d-md-inline\">cesta</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Añadir el producto a la cesta pero mantenerlo en mi lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Añadir a lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Añadir a lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contáctenos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Producto duplicado en la lista de este contacto."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Mi lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Propietario"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Precio del producto en el momento de añadirlo a la lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de precios"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Lista de precios cuando se añadió"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de producto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista de productos deseados"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Imagen del producto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista de deseos de la tienda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Mostrar lista de deseos vacía"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Sitio web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista de deseos"
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Lucia Pacheco, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Agregar a la lista"
|
||||
" de deseos\"/>Agregar a la lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Eliminar</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Añadir a la lista de "
|
||||
"deseos\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Agregar al <span class=\"d-none d-md-inline\">carrito</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Agregar el producto a mi carrito y conservarlo en mi lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Agregar a la lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Agregar a la lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contáctanos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Divisa"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Producto duplicado en la lista de deseos de este contacto."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Mi lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Propietario"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Precio del producto al momento de agregarlo a la lista de deseos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de precios"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Lista de precios cuando se agregó"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de producto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista de productos deseados"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Imagen del producto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista de deseos de la tienda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Mostrar lista de deseos vacía"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Sitio web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista de deseos"
|
||||
|
|
@ -0,0 +1,214 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Soovinimekiri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Lisa soovinimekirja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Eemalda</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Tegev"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Lisa <span class=\"d-none d-md-inline\">ostukorvi</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Lisa toode minu ostukorvi, aga hoia see alles ka minu soovide nimekirjas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Lisa soovide nimekirja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Lisa soovinimekirja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Võta meiega ühendust"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Antud partneri soovi nimekirjas olev toode on dubleeritud."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Minu soovinimekiri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Omanik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Hind"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Toote hind, kui see lisati soovide nimekirja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Hinnakiri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Hinnakiri lisamisel"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Toode"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Toote variatsioon"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Toote soovinimekiri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Toote pilt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Poe soovinimekiri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Näita tühja soovinimekirja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Veebileht"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Soovinimekiri"
|
||||
|
|
@ -0,0 +1,212 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Naser mars, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Naser mars, 2025\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" لیست علاقه مندی ها"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> حذف</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "فعال"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "افزودن <span class=\"d-none d-md-inline\">به سبد</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"محصول را به سبد خرید من اضافه کنید اما آن را در لیست علاقه مندی ها من نگه "
|
||||
"دارید"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "افزودن به لیست علاقهمندیها"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "افزودن به لیست علاقه مندی"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "مخاطب"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "تماس با ما"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "ارز"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "محصول در لیست علاقه مندی های تکراری برای این شریک."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "علاقهمندیهای من"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "مالک"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "قیمت"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "قیمت محصول هنگامی که در لیست علاقهمندیها اضافه شده است"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "لیست قیمت"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "لیست قیمت وقتی اضافه شد"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "محصول"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "گونه محصول"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "علاقهمندیهای محصول"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "تصویر محصول"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "علاقهمندیهای خرید"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "تارنما"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "علاقهمندیها"
|
||||
|
|
@ -0,0 +1,212 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Toivelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Lisää toivelistalle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Poista</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Lisää toivelistalle\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Lisää <span class=\"d-none d-md-inline\">ostoskoriin</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Lisää tuote ostoskoriin, mutta pidä se toivelistallani"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Lisää toivelistalle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Lisää toivelistalle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Ota yhteyttä"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuutta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Tämän kumppanin toivelistalla on tuotteesta kaksoiskappale."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Oma toivelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Omistaja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Hinta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Tuotteen hinta, kun se on lisätty toivelistalle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Hinnasto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Hinnasto, kun lisätty"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Tuotevariaatio"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Toivelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Tuotekuva"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Kaupan toivelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Näytä tyhjä toivelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Verkkosivu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Toivelista"
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Ajouter à la liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Supprimer</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Ajouter à la liste de "
|
||||
"souhaits\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Ajouter <span class=\"d-none d-md-inline\">au panier</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Ajouter le produit au panier et le sauvegarder dans ma liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Ajouter à la liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Ajouter à la liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contactez-nous"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Devise"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Produit dupliqué sur la liste de souhaits de ce partenaire."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Ma liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Propriétaire"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Prix"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Prix du produit après son ajout à la liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Liste de prix"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Liste de prix après ajout"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de produit"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Liste de souhaits de produits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Image du produit"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Liste de souhaits"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Afficher la liste de souhaits vide"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Site web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Liste de souhaits"
|
||||
|
|
@ -0,0 +1,203 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Currency"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Price"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Product Variant"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> הסר</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "פעיל"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "הוסף <span class=\"d-none d-md-inline\">לעגלה</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "הוסף מוצר לעגלת הקניות שלי אך שמור אותו ברשימת המוצרים המועדפים"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "הוסף למוצרים מועדפים"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "הוסף לרשימת המועדפים"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "איש קשר"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "צור קשר"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "מטבע"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "מוצר מועדף שוכפל עבור לקוח זה."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "המוצרים המועדפים שלי"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "אחראי"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "מחיר"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "מחיר המוצר כשהוא מתווסף לרשימת המוצרים המועדפים"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "מחירון"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "מחירון כשהוא מתווסף"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "מוצר"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "וריאנט מוצר"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "מוצר מועדף"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "תמונת מוצר"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "קנה מוצרים מועדפים"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "הראה רשימת מועדפים ריקה"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "אתר אינטרנט"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "מוצרים מועדפים"
|
||||
|
|
@ -0,0 +1,206 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "सक्रिय"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "संपर्क"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "इस तारीख को बनाया गया"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "करेंसी"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "इन्होंने आखिरी बार अपडेट किया"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "आखिरी बार अपडेट हुआ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "कीम"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "मूल्य सूची"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "उत्पाद"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "उत्पाद प्रकार"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "उपयोगकर्ता"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "वेबसाइट"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Davor Bojkić <davor.bojkic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Antonijo Kovacevic, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Antonijo Kovacevic, 2023\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
"Lista želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Dodaj na listu "
|
||||
"želja\"/>Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Ukloni</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Dodaj na listu želja\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Dodaj <span class=\"d-none d-md-inline\">u košaricu</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Dodaj proizvod u moju košaricu, ali ga zadrži na listi želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontaktirajte nas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplicirani proizvod na listi želja za ovog partnera."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Moja lista želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Vlasnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cijena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Cijena proizvoda kada je dodan u listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cjenik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Cjenik kada se doda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista želja proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Slika proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista želja za kupnju"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Prikaži praznu listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista želja"
|
||||
|
|
@ -0,0 +1,214 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# A . <tiboreu@protonmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# krnkris, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# 5768b353f27900ae76ad88cc42dfd5b8_3bb349f, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Kívánságlista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Kívánságlistához ad"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Eltávolít</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Hozzáadás <span class=\"d-none d-md-inline\">a kosárhoz</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Kosárba teszem, de megtartom a Kívánságlistámon is"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Kivánságlistához adás"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Kívánságlistához ad"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Vegye fel a kapcsolatot velünk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Pénznem"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplikált kivánságlista termék ehhez a partnerhez."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Kívánságlistám"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Tulajdonos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Ár"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "A Kívánságlistához adáskor érvényes termék ár"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Árlista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "A hozzáadáskor érvényes árlista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Termék"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Termékváltozat"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Termék Kívánságlista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Termékkép"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Üzlet Kívánságlita"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Üres Kívánságlista mutatása"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Honlap"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Kívánságlista"
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,208 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Tambahkan ke "
|
||||
"wishlist\"/>Tambahkan ke wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Hapus</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Tambahkan ke wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Tambahkan <span class=\"d-none d-md-inline\">ke Keranjang Belanja</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Tambahkan produk ke keranjang saya tapi tetap simpan di wishlist saya"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Tambahkan ke Wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Tambahkan ke wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Hubungi Kami"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Mata Uang"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Gandakan produk yang di wishlist untuk mitra ini."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Wishlist Saya"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Pemilik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Harga"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Harga produk saat produk ditambahkan ke wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Daftar Harga"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Daftar Harga saat ditambahkan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Wishlist Produk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Gambar Produk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Beli Wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Tampilkan Wishlist Kosong"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Wishlist"
|
||||
|
|
@ -0,0 +1,203 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Virk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Hafa samband"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Hafa samband"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Gjaldmiðill"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Verð"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Verðskrá"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Vara"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Vöruafbrigði"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Vefsíða"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,210 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2022\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Lista dei desideri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Aggiungi alla "
|
||||
"lista dei desideri\"/>Aggiungi alla lista dei desideri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Rimuovi</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Aggiungi alla lista "
|
||||
"dei desideri\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Aggiungi <span class=\"d-none d-md-inline\">al carrello</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Mantieni nella lista dei desideri dopo l'aggiunta al carrello"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Aggiungi alla lista dei desideri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Aggiungi alla lista dei desideri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contattaci"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Prodotto duplicato nella lista desideri del partner."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "La mia lista dei desideri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Proprietario"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Prezzo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Prezzo del prodotto quando viene aggiunto alla lista dei desideri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Listino prezzi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Listino prezzi dopo l'aggiunta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Prodotto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante prodotto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista dei desideri prodotto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Immagine prodotto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista dei desideri per acquisti"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Mostra lista desideri vuota"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Sito web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista dei desideri"
|
||||
|
|
@ -0,0 +1,210 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Andy Yiu, 2023
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" ほしいものリスト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>ウィッシュリストに追加"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> 削除</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "有効"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "<span class=\"d-none d-md-inline\">カート</span>に入れる"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "カートにプロダクトを入れて、ウィッシュリストにも保留"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "ウィッシュリストに追加"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "ウィッシュリストに追加"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "連絡先"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "お問い合わせ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "通貨"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "この取引先用に欲しいものリストに重複して掲載されているプロダクト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "自分のウィッシュリスト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "オーナー"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "価格"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "欲しいものリストへの追加時のプロダクト価格"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "価格リスト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "追加時の価格リスト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "プロダクト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "プロダクトバリアント"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "プロダクト欲しいものリスト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "プロダクト画像"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "ショップウィッシュリスト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "空のウィッシュリストを表示"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "ウェブサイト"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "ウィッシュリスト"
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/>យកចេញ</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "សកម្ម"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "បន្ថែម<span class=\"d-none d-md-inline\">ទៅកាត</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"បន្ថែមផលិតផលទៅក្នុងរទេះរបស់ខ្ញុំប៉ុន្តែរក្សាទុកវានៅក្នុងបញ្ជីប្រាថ្នារបស់ខ្ញុំ "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "បន្ថែមបញ្ជីតាមបំណង "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ទំនាក់ទំនង"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "ទាក់ទងមកពួកយើង"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "រូបិយប័ណ្ណ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "បញ្ជីប្រាថ្នារបស់ខ្ញុំ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "ម្ខាស់"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "តម្លៃ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "តម្លៃផលិតផលនៅពេលវាត្រូវបានបន្ថែមនៅក្នុងបញ្ជីប្រាថ្នា "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "តារាងតំលៃ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "តារាងតំលៃ នៅពេលបន្ថែម"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "ផលិតផល"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ការផ្លាស់ប្តូរផលិតផល"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "បញ្ជីប្រាថ្នាផលិតផល"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "រូបភាពផលិតផល "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "បញ្ជីទិញតាមហាង"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "វែបសាយ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "បញ្ជីប្រាថ្នា"
|
||||
|
|
@ -0,0 +1,208 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" 위시리스트"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>위시리스트에 추가"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> 제거</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "활성"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "<span class=\"d-none d-md-inline\">장바구니</span>에 추가"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "장바구니에 제품을 추가하지만 관심 목록에도 보관합니다."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "관심 목록에 추가"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "위시리스트에 추가"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "연락처"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "문의하기"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일자"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "통화"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "이 협력사의 관심 목록에 있는 상품을 복제했습니다."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 일자"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "나의 관심 목록"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "소유자"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "가격"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "관심 목록에 추가된 상품의 가격입니다."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "가격표"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "추가할 당시의 가격표"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "품목"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "품목 세부선택"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "찜한 상품"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "상품 이미지"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "찜한 상점"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "내용 없는 위시리스트 표시"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "웹사이트"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "관심 목록"
|
||||
|
|
@ -0,0 +1,187 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:17+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:16+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/> "
|
||||
"Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_ir_autovacuum
|
||||
msgid "Automatic Vacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "ໃຊ້ຢູ່"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ຂໍ້ມູນຕິດຕໍ່ພົວພັນ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "ຕິດຕໍ່ຫາພວກເຮົາ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "ສະກຸນເງິນ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "ເຈົ້າຂອງ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "ສິນຄ້າ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,215 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2022
|
||||
# Šarūnas Ažna <sarunas.azna@gmail.com>, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Tautvydas M, 2024
|
||||
# Gailius Kazlauskas, 2024
|
||||
# Greta Šeštokė, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Greta Šeštokė, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr "Norų sąrašas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Pasižymėti"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Pašalinti</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Pridėti <span class=\"d-none d-md-inline\">į krepšelį</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Pridėti produktą į krepšelį, bet palikti jį ir norų sąraše"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Pridėti į norų sąrašą"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Pasižymėti"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Susisiekite su mumis"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valiuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Dubliuojasi šio partnerio pageidavimų sąraše esantis produktas."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Mano norų sąrašas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Savininkas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Kaina"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Produkto kaina tada, kai jis buvo pridėtas į norų sąrašą"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Kainoraštis"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Kainoraštis, kai pridėta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produktas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkto variantas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Produkto norų sąrašas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produkto paveikslėlis"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Pirkti iš norų sąrašo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Svetainė"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Norų sąrašas"
|
||||
|
|
@ -0,0 +1,208 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# InfernalLV <karlisdreizis@gmail.com>, 2022
|
||||
# Anzelika Adejanova, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "Izņemt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktīvs"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Pievienot <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakts"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valūta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Īpašnieks"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cenrādis"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkts"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkta Veids"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produkta attēls"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Tīkla vietne"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>വിഷ്ലിസ്റ്റിലേക്ക് ചേർക്കുക"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "ആക്റ്റീവ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "വിഷ്ലിസ്റ്റിലേക്ക് ചേർക്കുക"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "വിഷ്ലിസ്റ്റിലേക്ക് ചേർക്കുക"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "കോൺടാക്ട് "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "ഞങ്ങളെ സമീപിക്കുക"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "കറൻസി"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "എന്റെ വിഷ്ലിസ്റ്റ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "ഓണർ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "പ്രൈസ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "പ്രൈസ്ലിസ്റ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "പ്രോഡക്റ്റ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "പ്രോഡക്റ്റ് വേരിയന്റ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "പ്രോഡക്റ്റ് വിഷ്ലിസ്റ്റ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "പ്രോഡക്റ്റ് ചിത്രം"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "ഷോപ്പ് വിഷ്ലിസ്റ്റ്"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "വെബ്സൈറ്റ് "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "വിഷ്ലിസ്റ്റ്"
|
||||
|
|
@ -0,0 +1,212 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# hish, 2022
|
||||
# Bayarkhuu Bataa, 2022
|
||||
# baaska sh <sh.baaskash@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Хүслийн жагсаалт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Хүслийн жагсаалтанд нэмэх"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Устгах</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Идэвхтэй"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Сагс руу <span class=\"d-none d-md-inline\">нэмэх</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Сагсанд нэмэх, мөн хүслийн жагсаалтанд хэвээр үлдээх"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Хүслийн жагсаалтанд нэмэх"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Хүслийн жагсаалтанд нэмэх"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Харилцах хаяг"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Бидэнтэй холбогдох"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Валют"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Энэ харилцагчийн хувьд хүслийн жагсаалтанд давхардаж орсон бараа."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Миний хүслийн жагсаалт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Эзэмшигч"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Үнэ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Хүслийн жагсаалтанд нэмэгдэх үеийн барааны үнэ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Үнийн хүснэгт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Хүслийн жагсаалтанд нэмэх үеийн үнийн хүснэгт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Бараа"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Барааны хувилбар"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Хүслийн жагсаалт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Барааны зураг"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Онлайн хүслийн жагсаалт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Хоосон хүслийн жагсаалт харуулах"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Вэбсайт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Хүслийн жагсаалт"
|
||||
|
|
@ -0,0 +1,203 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kenalan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Hubungi Kami"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Mata wang"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Pemilik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Harga"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Senarai harga"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "laman web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,206 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Henning Fyllingsnes, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr "Legg til i ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/>Fjern</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Legg <span class=\"d-none d-md-inline\">i handlevogn</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Legg produktet til i handlevognen, men behold det på ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Legg til i ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Legg til i ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontakt oss"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Eier"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Pris"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Pris på produktet når det er lagt til i ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Prisliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Prisliste når lagt til"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produktbilde"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Handle fra ønskeliste"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Nettsted"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Ønskeliste"
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Toevoegen aan "
|
||||
"wensenlijst\"/>Toevoegen aan verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Verwijderen</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Toevoegen aan "
|
||||
"verlanglijst\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Toevoegen <span class=\"d-none d-md-inline\">aan winkelmandje</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Voeg product toe aan mijn winkelmandje maar hou het product op mijn "
|
||||
"verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Toevoegen aan verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Toevoegen aan verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Ons contacteren"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Gedupliceerd product op verlanglijst voor deze relatie."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Mijn verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Eigenaar"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Prijs"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Prijs van het product wanneer het is toegevoegd aan de verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Prijslijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Prijslijst wanneer toegevoegd"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Productvariant"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Product verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Productafbeelding"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Shop verlanglijst"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Toon lege verlanglijst."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Verlanglijst"
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,219 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Bartłomiej Maliński <bartlomiej.malinski@gmail.com>, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Rafał Kozak <rafal.kozak@openglobe.pl>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
"Lista życzeń"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Dodaj do listy życzeń"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Usuń</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Dodaj<span class=\"d-none d-md-inline\">do koszyka</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Dodaj produkty do koszyka ale zostaw je w mojej liście ulubionych"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Dodaj do ulubionych"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Dodaj do listy życzeń"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Skontaktuj się z nami"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Waluta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Zduplikowany produkt na liście życzeń tego partnera."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Moje ulubione produkty"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Właściciel"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Cena produktu po dodaniu do ulubionych"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cennik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Cennik po dodaniu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Wariant produktu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Produkt w ulubionych"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Zdjęcie produktu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Ulubione produkty"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Wyświetl pustą listę życzeń"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Strona internetowa"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Ulubione produkty"
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Luiz Fernando <lfpsgs@outlook.com>, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Marcelo Pereira <marcelo.pereira@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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/>Remover </small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contacte-nos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moeda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Dono"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Preço"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de preços"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de Artigo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,212 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Layna Nascimento, 2023
|
||||
# Kevilyn Rosa, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Kevilyn Rosa, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Lista de desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Adicionar à lista de desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Remover </small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Adicionar à Lista de "
|
||||
"Desejos\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Adicionar <span class=\"d-none d-md-inline\">ao Carrinho</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Adicionar produtos ao meu carrinho, mas manter em minha lista de desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Adicionar à Lista de Desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Adicionar à lista de desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Entre em contato"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moeda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Produto duplicado na lista de desejos para este parceiro."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Minha Lista de Desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Proprietário"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Preço"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Preço do produto quando ele foi adicionado na lista de desejos"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Lista de Preço"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Lista de preços quando adicionado"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variação do Produto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista de Desejos do Produto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Imagem do produto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista de Desejos da Loja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Exibir Lista de Desejos Vazia"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Site"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista de Desejos"
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Maria Muntean, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Maria Muntean, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Listă de dorințe"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Adaugă la lista de dorințe"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Elimină</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Adaugă la favorite\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Adaugă<span class=\"d-none d-md-inline\"> în Coș</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Adaugă produsul în coș și păstrează-l în lista mea de favorite."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Adaugă la favorite"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Adaugă la lista de dorințe"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Contactați-ne"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Produs favorit duplicat pentru acest partener."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Favorite mele"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Proprietar"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Preț"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Prețul produsului când a fost adăugat în lista de favorite"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Listă de prețuri"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Listă de prețuri atunci când este adăugată"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produs"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variantă produs"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Produse favorite"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Imagine produs"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Favorite"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Pagină web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Favorite"
|
||||
|
|
@ -0,0 +1,215 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Collex100, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Oleg Kuryan <oleg@ventor.tech>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Список желаний"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Добавить в список желаний"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Удалить</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Добавить <span class=\"d-none d-md-inline\">в корзину</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Добавить продукт в мою корзину, но оставить его в списке пожеланий"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Добавить в список пожеланий"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Добавить в избранное"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Свяжитесь с нами"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Валюта"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Дублированные товары список пожеланий для этого партнера."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Мой список пожеланий"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Владелец"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Цена"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Цена продукта в момент добавления в список пожеланий"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Прайс"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Прайс лист в момент добавления"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Вариант продукта"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Список желаемых товаров"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "изображение товара"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Список пожеланий для покупки"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Вебсайт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Список пожеланий"
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tereza Mokrá, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tereza Mokrá, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Pridať do zoznamu želaní"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktívne"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Pridať do zoznamu želaní"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Pridať do zoznamu želaní"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontaktujte nás"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Mena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplikovaný produkt želaný pre tohto partnera."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Majiteľ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cenník"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta produktu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Obrázok produktu"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tomaž Jug <tomaz@editor.si>, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Dodaj na seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Odstrani</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Dodaj <span class=\"d-none d-md-inline\">v voziček</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Dodaj izdelek v košarico, vendar ga hranite na mojem seznamu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Dodaj na seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Dodaj na seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Stik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Podvojen izdelek s seznami želja tega partnerja."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Moj seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Lastnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Cena izdelka, ko je dodan na seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cenik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Cenik ob dodajanju"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Različica izdelka"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Seznam želja izdelkov"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Slika izdelka"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Seznam želja v trgovini"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Prikaži prazen seznam želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Spletna stran"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Seznam želja"
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Lista želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Ukloni</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Dodaj <span class=\"d-none d-md-inline\">u korpu</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Dodaj proizvod u moju korpu, ali ga zadrži na mojoj listi želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Dodaj na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontaktirajte nas"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplirani proizvodi na listi želja za ovog partnera"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Moja lista želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Vlasnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Cena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Cena proizvoda kada je proizvod dodat na listu želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cenovnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Cenovnik kada je dodat"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijante proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista želja proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Slika proizvoda"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Lista želja prodavnice"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Prikaži prazne liste želja"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Lista želja"
|
||||
|
|
@ -0,0 +1,191 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"hidden-xs\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_create_date
|
||||
msgid "Added Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users_current_session
|
||||
msgid "Current Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_price_new
|
||||
msgid "Current price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist_price_new
|
||||
msgid "Current price of this product, using same pricelist, ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Vlasnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_price
|
||||
msgid "Price"
|
||||
msgstr "Cijena"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist_price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Cjenovnik"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist_pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_product_id
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_session
|
||||
msgid "Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist_website_id
|
||||
msgid "Website"
|
||||
msgstr "Internet stranica"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist_session
|
||||
msgid "Website session identifier where this product was wishlisted."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner_wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users_wishlist_ids
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "product.wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,214 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
# Simon S, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Lasse Larsson, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Lägg till önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Ta bort </small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Lägg till <span class=\"d-none d-md-inline\">i kundvagnen</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Lägg till produkten i min kundvagn men behåll den på min önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Lägg till i önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Lägg till i önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Kontakta oss"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Duplicerad produkt på önskelistan för denna partner."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Min önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Ägare"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Pris"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Pris på produkten när den har lagts till i önskelistan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Prislista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Prislista när tillagd"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Produkt Önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produkt Bild"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Shoppa Önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Visa Tom Önskelista"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Webbplats"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Önskelista"
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,210 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Odoo Thaidev <odoothaidev@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" รายการที่ต้องการ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"รูปภาพ\" aria-"
|
||||
"label=\"เพิ่มเข้าในรายการที่ต้องการ\"/>Add to wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> ลบออก</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"เพิ่มในรายการที่อยากได้\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "เปิดใช้งาน"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "เพิ่ม <span class=\"d-none d-md-inline\">ในรถเข็น</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "เพิ่มสินค้าลงในรถเข็นของฉัน แต่เก็บไว้ในรายการที่อยากได้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "เพิ่มไปยังรายการที่อยากได้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "เพิ่มในรายการที่อยากได้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ติดต่อ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "ติดต่อเรา"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "สกุลเงิน"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "รายการที่อยากได้ซ้ำสำหรับพาร์ทเนอร์รายนี้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัปเดตครั้งล่าสุดโดย"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "รายการที่อยากได้ของฉัน"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "เจ้าของ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "ราคา"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "ราคาของสินค้าเมื่อมีการเพิ่มในรายการที่อยากได้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "รายการราคา"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "รายการราคาที่เพิ่มแล้ว"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "สินค้า"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ตัวแปรสินค้า"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "สินค้าที่อยากได้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "รูปสินค้า"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "แสดงรายการที่อยากได้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "แสดงรายการสิ่งที่อยากได้ว่างเปล่า"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "เว็บไซต์"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "รายการที่อยากได้ "
|
||||
|
|
@ -0,0 +1,215 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" İstek Listesi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>İstek listesine ekle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Kaldır</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Ekle <span class=\"d-none d-md-inline\">Sepete </span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Ürünü sepetime ekle ama talep listemde tut"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "İstek Listesine Ekle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "İstek listesine ekle"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Bize Ulaşın"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Para Birimi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "İş ortağı için çoğaltılmış talep listesi."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Wishlistim"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Sahibi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Fiyat"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Wishliste eklendiğinde ürünün fiyatı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Fiyat Listesi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Eklendiğinde ki fiyat listesi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Ürün Varyantı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Ürün Talep Listesi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Ürün görüntüsü"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Alışveriş İstek Listesi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Boş İstek Listesini Göster"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Websitesi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "İstek Listesi"
|
||||
|
|
@ -0,0 +1,208 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Список побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Додати до списку побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Видалити</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Додати <span class=\"d-none d-md-inline\">до кошика</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "Додайте товар у свій кошик, але залиште його в списку побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Додати в список побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Додати у збереження"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Зв'яжіться з нами"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Валюта"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Дубльовані товари списку побажань для цього партнера."
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Мій список побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Власник"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Ціна"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Ціна товару, коли він був доданий до списку побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Прайс-лист"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Прайс-лист, коли додано"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Товар"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Варіант товару"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Список бажаних товарів"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Зображення товару"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Список побажань магазину"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Показати пустий список побажань"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Веб-сайт"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Список побажань"
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Danh sách yêu thích"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Thêm vào danh sách"
|
||||
" yêu thích\"/>Thêm vào danh sách yêu thích"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> Loại bỏ</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Thêm vào yêu thích\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "Add <span class=\"d-none d-md-inline\">đến giỏ hàng</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
"Thêm sản phẩm đến giỏ hàng của tôi nhưng giữ trong mục yêu thích của tôi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "Thêm vào yêu thích"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "Thêm vào wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Liên hệ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "Liên hệ với chúng tôi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Tiền tệ"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "Đã nhân bản sản phẩm trong wishlist cho đối tác này. "
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "Yêu thích của tôi"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "Người phụ trách"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "Giá"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "Giá của sản phẩm khi được thêm vào mục yêu thích"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "Bảng giá"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "Bảng giá khi được thêm vào"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Sản phẩm yêu thích"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Hình ảnh sản phẩm"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "Cửa hàng yêu thích"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "Hiển thị wishlist trống"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "Trang web"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "Yêu thích"
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-20 09:02+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+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: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" 收藏夹"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>添加到收藏夹"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> 移除</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "启用"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "加到<span class=\"d-none d-md-inline\">购物车</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "产品加入购物车后,仍保留在我的收藏夹中"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "加入收藏"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "添加到愿望清单"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "联系人"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "联系我们"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "币种"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "此合作伙伴的愿望产品清单重复。"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "我的收藏"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "所有者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "价格"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "添加到收藏时的产品价格"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "价格表"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "添加时的价位表"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "产品变体"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "商品需求清单"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "产品图像"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "店铺收藏清单"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "显示空白愿望清单"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "网站"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "愿望单"
|
||||
|
|
@ -0,0 +1,206 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" Wishlist"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-fw fa-heart\"/>\n"
|
||||
" 願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid ""
|
||||
"<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"Add to "
|
||||
"wishlist\"/>Add to wishlist"
|
||||
msgstr "<i class=\"fa fa-heart-o me-2\" role=\"img\" aria-label=\"加入願望清單\"/> 加入願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "<small><i class=\"fa fa-trash-o\"/> Remove</small>"
|
||||
msgstr "<small><i class=\"fa fa-trash-o\"/> 移出</small>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"Add to wishlist\"/>"
|
||||
msgstr "<span class=\"fa fa-heart\" role=\"img\" aria-label=\"加入願望清單\"/>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__active
|
||||
msgid "Active"
|
||||
msgstr "啟用"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add <span class=\"d-none d-md-inline\">to Cart</span>"
|
||||
msgstr "加入 <span class=\"d-none d-md-inline\">購物車</span>"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Add product to my cart but keep it in my wishlist"
|
||||
msgstr "將產品加入購物車但仍保留在我的願望清單中"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.add_to_wishlist
|
||||
msgid "Add to Wishlist"
|
||||
msgstr "加入願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_add_to_wishlist
|
||||
msgid "Add to wishlist"
|
||||
msgstr "加入願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "聯絡人"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Contact Us"
|
||||
msgstr "聯絡我們"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Currency"
|
||||
msgstr "幣別"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.constraint,message:website_sale_wishlist.constraint_product_wishlist_product_unique_partner_id
|
||||
msgid "Duplicated wishlisted product for this partner."
|
||||
msgstr "此合作夥伴的重複願望清單產品。"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "My Wishlist"
|
||||
msgstr "我的願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__partner_id
|
||||
msgid "Owner"
|
||||
msgstr "所有者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price"
|
||||
msgstr "價格"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__price
|
||||
msgid "Price of the product when it has been added in the wishlist"
|
||||
msgstr "添加到願望清單時的產品價格"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist"
|
||||
msgstr "價格表"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,help:website_sale_wishlist.field_product_wishlist__pricelist_id
|
||||
msgid "Pricelist when added"
|
||||
msgstr "添加時的價位表"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_template
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id
|
||||
msgid "Product"
|
||||
msgstr "商品"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "產品款式"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "產品願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "產品圖片"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Shop Wishlist"
|
||||
msgstr "購買願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show Empty Wishlist"
|
||||
msgstr "打開願望清單"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_res_users
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__website_id
|
||||
msgid "Website"
|
||||
msgstr "網站"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_partner__wishlist_ids
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_res_users__wishlist_ids
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.header_wishlist_link
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Wishlist"
|
||||
msgstr "願望清單"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import product_wishlist
|
||||
from . import res_users
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from datetime import datetime, timedelta
|
||||
from odoo import api, fields, models
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class ProductWishlist(models.Model):
|
||||
_name = 'product.wishlist'
|
||||
_description = 'Product Wishlist'
|
||||
_sql_constraints = [
|
||||
("product_unique_partner_id",
|
||||
"UNIQUE(product_id, partner_id)",
|
||||
"Duplicated wishlisted product for this partner."),
|
||||
]
|
||||
|
||||
partner_id = fields.Many2one('res.partner', string='Owner')
|
||||
product_id = fields.Many2one('product.product', string='Product', required=True)
|
||||
currency_id = fields.Many2one('res.currency', related='pricelist_id.currency_id', readonly=True)
|
||||
pricelist_id = fields.Many2one('product.pricelist', string='Pricelist', help='Pricelist when added')
|
||||
price = fields.Monetary(currency_field='currency_id', string='Price', help='Price of the product when it has been added in the wishlist')
|
||||
website_id = fields.Many2one('website', ondelete='cascade', required=True)
|
||||
active = fields.Boolean(default=True, required=True)
|
||||
|
||||
@api.model
|
||||
def current(self):
|
||||
"""Get all wishlist items that belong to current user or session,
|
||||
filter products that are unpublished."""
|
||||
if not request:
|
||||
return self
|
||||
|
||||
if request.website.is_public_user():
|
||||
wish = self.sudo().search([('id', 'in', request.session.get('wishlist_ids', []))])
|
||||
else:
|
||||
wish = self.search([("partner_id", "=", self.env.user.partner_id.id), ('website_id', '=', request.website.id)])
|
||||
|
||||
return wish.filtered(
|
||||
lambda wish:
|
||||
wish.sudo().product_id.product_tmpl_id.website_published
|
||||
and wish.sudo().product_id.product_tmpl_id._can_be_added_to_cart()
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _add_to_wishlist(self, pricelist_id, currency_id, website_id, price, product_id, partner_id=False):
|
||||
wish = self.env['product.wishlist'].create({
|
||||
'partner_id': partner_id,
|
||||
'product_id': product_id,
|
||||
'currency_id': currency_id,
|
||||
'pricelist_id': pricelist_id,
|
||||
'price': price,
|
||||
'website_id': website_id,
|
||||
})
|
||||
return wish
|
||||
|
||||
@api.model
|
||||
def _check_wishlist_from_session(self):
|
||||
"""Assign all wishlist withtout partner from this the current session"""
|
||||
session_wishes = self.sudo().search([('id', 'in', request.session.get('wishlist_ids', []))])
|
||||
partner_wishes = self.sudo().search([("partner_id", "=", self.env.user.partner_id.id)])
|
||||
partner_products = partner_wishes.mapped("product_id")
|
||||
# Remove session products already present for the user
|
||||
duplicated_wishes = session_wishes.filtered(lambda wish: wish.product_id <= partner_products)
|
||||
session_wishes -= duplicated_wishes
|
||||
duplicated_wishes.unlink()
|
||||
# Assign the rest to the user
|
||||
session_wishes.write({"partner_id": self.env.user.partner_id.id})
|
||||
request.session.pop('wishlist_ids')
|
||||
|
||||
@api.autovacuum
|
||||
def _gc_sessions(self, *args, **kwargs):
|
||||
"""Remove wishlists for unexisting sessions."""
|
||||
self.with_context(active_test=False).search([
|
||||
("create_date", "<", fields.Datetime.to_string(datetime.now() - timedelta(weeks=kwargs.get('wishlist_week', 5)))),
|
||||
("partner_id", "=", False),
|
||||
]).unlink()
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
wishlist_ids = fields.One2many('product.wishlist', 'partner_id', string='Wishlist', domain=[('active', '=', True)])
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = 'product.template'
|
||||
|
||||
def _is_in_wishlist(self):
|
||||
self.ensure_one()
|
||||
return self in self.env['product.wishlist'].current().mapped('product_id.product_tmpl_id')
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = 'product.product'
|
||||
|
||||
def _is_in_wishlist(self):
|
||||
self.ensure_one()
|
||||
return self in self.env['product.wishlist'].current().mapped('product_id')
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
from odoo import api, fields, models
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = "res.users"
|
||||
|
||||
def _check_credentials(self, password, env):
|
||||
"""Make all wishlists from session belong to its owner user."""
|
||||
result = super(ResUsers, self)._check_credentials(password, env)
|
||||
if request and request.session.get('wishlist_ids'):
|
||||
self.env["product.wishlist"]._check_wishlist_from_session()
|
||||
return result
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_product_wishlist_default,access_product_wishlist_default,model_product_wishlist,,0,0,0,0
|
||||
access_product_wishlist_public,access_product_wishlist_public,model_product_wishlist,base.group_public,0,0,0,0
|
||||
access_product_wishlist_portal,access_product_wishlist_portal,model_product_wishlist,base.group_portal,1,1,1,1
|
||||
access_product_wishlist_user,access_product_wishlist_user,model_product_wishlist,base.group_user,1,1,1,1
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="product_wishlist_rule" model="ir.rule">
|
||||
<field name="name">See own Wishlist</field>
|
||||
<field name="model_id" ref="model_product_wishlist"/>
|
||||
<field name="domain_force">[('partner_id','=', user.partner_id.id)]</field>
|
||||
<field name="groups" eval="[(4, ref('base.group_portal')), (4, ref('base.group_user'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="all_product_wishlist_rule" model="ir.rule">
|
||||
<field name="name">See all wishlist</field>
|
||||
<field name="model_id" ref="model_product_wishlist"/>
|
||||
<field name="domain_force">[(1, '=', 1)]</field>
|
||||
<field name="groups" eval="[(4, ref('sales_team.group_sale_manager'))]"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#269396"/><stop offset="100%" stop-color="#218689"/></linearGradient><path id="d" d="M50.363 41a1.636 1.636 0 0 1-1.59 1.286L27 43l1 4h19c1 0 1 2 0 2H26l-6-24h-2v1c0 .667-.333 1-1 1s-1-.333-1-1v-2c.066-.667.4-1 1-1h4c.517 0 .85.333 1 1l1 3.281h28.45c1.048 0 1.824.985 1.592 2.019L50.363 41zM45.5 55a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5zm-19 0a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5zm11.375-15c.114 0 .21-.04.289-.118l4.084-3.934c1.001-1.001 1.502-1.985 1.502-2.95 0-.962-.278-1.714-.833-2.256-.555-.542-1.322-.813-2.301-.813-.271 0-.548.047-.83.14-.282.095-.544.221-.786.38a8.39 8.39 0 0 0-.627.45c-.175.14-.34.288-.498.446a6.041 6.041 0 0 0-.498-.446 8.39 8.39 0 0 0-.627-.45 3.357 3.357 0 0 0-.786-.38 2.614 2.614 0 0 0-.83-.14c-.979 0-1.746.27-2.301.813-.555.542-.833 1.294-.833 2.255 0 .293.051.595.154.905.103.31.22.575.35.793.132.219.28.432.447.64.166.207.287.35.364.43.076.078.136.135.18.17l4.091 3.947a.392.392 0 0 0 .289.118z"/><path id="e" d="M50.363 39a1.636 1.636 0 0 1-1.59 1.286L27 41l1 4h19c1 0 1 2 0 2H26l-6-24h-2v1c0 .667-.333 1-1 1s-1-.333-1-1v-2c.066-.667.4-1 1-1h4c.517 0 .85.333 1 1l1 3.281h28.45c1.048 0 1.824.985 1.592 2.019L50.363 39zM45.5 53a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5zm-19 0a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5zm11.375-15c.114 0 .21-.04.289-.118l4.084-3.934c1.001-1.001 1.502-1.985 1.502-2.95 0-.962-.278-1.714-.833-2.256-.555-.542-1.322-.813-2.301-.813-.271 0-.548.047-.83.14-.282.095-.544.221-.786.38a8.39 8.39 0 0 0-.627.45c-.175.14-.34.288-.498.446a6.041 6.041 0 0 0-.498-.446 8.39 8.39 0 0 0-.627-.45 3.357 3.357 0 0 0-.786-.38 2.614 2.614 0 0 0-.83-.14c-.979 0-1.746.27-2.301.813-.555.542-.833 1.294-.833 2.255 0 .293.051.595.154.905.103.31.22.575.35.793.132.219.28.432.447.64.166.207.287.35.364.43.076.078.136.135.18.17l4.091 3.947a.392.392 0 0 0 .289.118z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M31.59 69H4c-2 0-4-1-4-4V38.29l16.235-16.918L21 21l2 5h29.636L50.23 39.393 45.537 45H47l.511 1.724-2.21 2.392 2.3 2.671L31.59 69z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
|
|
@ -0,0 +1,16 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import { WebsiteSale } from 'website_sale.website_sale';
|
||||
|
||||
WebsiteSale.include({
|
||||
/**
|
||||
* Toggles the add to cart button depending on the possibility of the
|
||||
* current combination.
|
||||
*
|
||||
* @override
|
||||
*/
|
||||
_toggleDisable: function ($parent, isCombinationPossible) {
|
||||
this._super(...arguments);
|
||||
$parent.find('button.o_wish_add').toggleClass('disabled', !isCombinationPossible);
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,299 @@
|
|||
odoo.define('website_sale_wishlist.wishlist', function (require) {
|
||||
"use strict";
|
||||
|
||||
var publicWidget = require('web.public.widget');
|
||||
var wSaleUtils = require('website_sale.utils');
|
||||
var VariantMixin = require('sale.VariantMixin');
|
||||
|
||||
// VariantMixin events are overridden on purpose here
|
||||
// to avoid registering them more than once since they are already registered
|
||||
// in website_sale.js
|
||||
publicWidget.registry.ProductWishlist = publicWidget.Widget.extend(VariantMixin, {
|
||||
selector: '.oe_website_sale',
|
||||
events: {
|
||||
'click .o_wsale_my_wish': '_onClickMyWish',
|
||||
'click .o_add_wishlist, .o_add_wishlist_dyn': '_onClickAddWish',
|
||||
'change input.product_id': '_onChangeVariant',
|
||||
'change input.js_product_change': '_onChangeProduct',
|
||||
'click .wishlist-section .o_wish_rm': '_onClickWishRemove',
|
||||
'click .wishlist-section .o_wish_add': '_onClickWishAdd',
|
||||
},
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
*/
|
||||
init: function (parent) {
|
||||
this._super.apply(this, arguments);
|
||||
this.wishlistProductIDs = JSON.parse(sessionStorage.getItem('website_sale_wishlist_product_ids') || '[]');
|
||||
},
|
||||
/**
|
||||
* Gets the current wishlist items.
|
||||
* In editable mode, do nothing instead.
|
||||
*
|
||||
* @override
|
||||
*/
|
||||
willStart: function () {
|
||||
var self = this;
|
||||
var def = this._super.apply(this, arguments);
|
||||
var wishDef;
|
||||
if (this.wishlistProductIDs.length != +$('#top_menu .my_wish_quantity').text()) {
|
||||
wishDef = $.get('/shop/wishlist', {
|
||||
count: 1,
|
||||
}).then(function (res) {
|
||||
self.wishlistProductIDs = JSON.parse(res);
|
||||
sessionStorage.setItem('website_sale_wishlist_product_ids', res);
|
||||
});
|
||||
|
||||
}
|
||||
return Promise.all([def, wishDef]);
|
||||
},
|
||||
/**
|
||||
* Updates the wishlist view (navbar) & the wishlist button (product page).
|
||||
* In editable mode, do nothing instead.
|
||||
*
|
||||
* @override
|
||||
*/
|
||||
start: function () {
|
||||
var def = this._super.apply(this, arguments);
|
||||
|
||||
this._updateWishlistView();
|
||||
// trigger change on only one input
|
||||
if (this.$('input.js_product_change').length) { // manage "List View of variants"
|
||||
this.$('input.js_product_change:checked').first().trigger('change');
|
||||
} else {
|
||||
this.$('input.product_id').first().trigger('change');
|
||||
}
|
||||
|
||||
return def;
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Private
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_addNewProducts: function ($el) {
|
||||
var self = this;
|
||||
var productID = $el.data('product-product-id');
|
||||
if ($el.hasClass('o_add_wishlist_dyn')) {
|
||||
productID = parseInt($el.closest('.js_product').find('.product_id:checked').val());;
|
||||
}
|
||||
var $form = $el.closest('form');
|
||||
var templateId = $form.find('.product_template_id').val();
|
||||
// when adding from /shop instead of the product page, need another selector
|
||||
if (!templateId) {
|
||||
templateId = $el.data('product-template-id');
|
||||
}
|
||||
$el.prop("disabled", true).addClass('disabled');
|
||||
var productReady = this.selectOrCreateProduct(
|
||||
$el.closest('form'),
|
||||
productID,
|
||||
templateId,
|
||||
false
|
||||
);
|
||||
|
||||
productReady.then(function (productId) {
|
||||
productId = parseInt(productId, 10);
|
||||
|
||||
if (productId && !_.contains(self.wishlistProductIDs, productId)) {
|
||||
return self._rpc({
|
||||
route: '/shop/wishlist/add',
|
||||
params: {
|
||||
product_id: productId,
|
||||
},
|
||||
}).then(function () {
|
||||
var $navButton = $('header .o_wsale_my_wish').first();
|
||||
self.wishlistProductIDs.push(productId);
|
||||
sessionStorage.setItem('website_sale_wishlist_product_ids', JSON.stringify(self.wishlistProductIDs));
|
||||
self._updateWishlistView();
|
||||
wSaleUtils.animateClone($navButton, $el.closest('form'), 25, 40);
|
||||
// It might happen that `onChangeVariant` is called at the same time as this function.
|
||||
// In this case we need to set the button to disabled again.
|
||||
// Do this only if the productID is still the same.
|
||||
let currentProductId = $el.data('product-product-id');
|
||||
if ($el.hasClass('o_add_wishlist_dyn')) {
|
||||
currentProductId = parseInt($el.closest('.js_product').find('.product_id:checked').val());
|
||||
}
|
||||
if (productId === currentProductId) {
|
||||
$el.prop("disabled", true).addClass('disabled');
|
||||
}
|
||||
}).guardedCatch(function () {
|
||||
$el.prop("disabled", false).removeClass('disabled');
|
||||
});
|
||||
}
|
||||
}).guardedCatch(function () {
|
||||
$el.prop("disabled", false).removeClass('disabled');
|
||||
});
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_updateWishlistView: function () {
|
||||
const $wishButton = $('.o_wsale_my_wish');
|
||||
if ($wishButton.hasClass('o_wsale_my_wish_hide_empty')) {
|
||||
$wishButton.toggleClass('d-none', !this.wishlistProductIDs.length);
|
||||
}
|
||||
$wishButton.find('.my_wish_quantity').text(this.wishlistProductIDs.length);
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_removeWish: function (e, deferred_redirect) {
|
||||
var tr = $(e.currentTarget).parents('tr');
|
||||
var wish = tr.data('wish-id');
|
||||
var product = tr.data('product-id');
|
||||
var self = this;
|
||||
|
||||
this._rpc({
|
||||
route: '/shop/wishlist/remove/' + wish,
|
||||
}).then(function () {
|
||||
$(tr).hide();
|
||||
});
|
||||
|
||||
this.wishlistProductIDs = _.without(this.wishlistProductIDs, product);
|
||||
sessionStorage.setItem('website_sale_wishlist_product_ids', JSON.stringify(this.wishlistProductIDs));
|
||||
if (this.wishlistProductIDs.length === 0) {
|
||||
if (deferred_redirect) {
|
||||
deferred_redirect.then(function () {
|
||||
self._redirectNoWish();
|
||||
});
|
||||
}
|
||||
}
|
||||
this._updateWishlistView();
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_addOrMoveWish: function (e) {
|
||||
var $navButton = $('header .o_wsale_my_cart').first();
|
||||
var tr = $(e.currentTarget).parents('tr');
|
||||
var product = tr.data('product-id');
|
||||
$('.o_wsale_my_cart').removeClass('d-none');
|
||||
wSaleUtils.animateClone($navButton, tr, 25, 40);
|
||||
|
||||
if ($('#b2b_wish').is(':checked')) {
|
||||
return this._addToCart(product, tr.find('add_qty').val() || 1);
|
||||
} else {
|
||||
var adding_deffered = this._addToCart(product, tr.find('add_qty').val() || 1);
|
||||
this._removeWish(e, adding_deffered);
|
||||
return adding_deffered;
|
||||
}
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_addToCart: function (productID, qty) {
|
||||
const $tr = this.$(`tr[data-product-id="${productID}"]`);
|
||||
const productTrackingInfo = $tr.data('product-tracking-info');
|
||||
if (productTrackingInfo) {
|
||||
productTrackingInfo.quantity = parseFloat(qty);
|
||||
$tr.trigger('add_to_cart_event', [productTrackingInfo]);
|
||||
}
|
||||
return this._rpc({
|
||||
route: "/shop/cart/update_json",
|
||||
params: this._getCartUpdateJsonParams(productID, qty),
|
||||
}).then(function (data) {
|
||||
sessionStorage.setItem('website_sale_cart_quantity', data.cart_quantity);
|
||||
wSaleUtils.updateCartNavBar(data);
|
||||
wSaleUtils.showWarning(data.warning);
|
||||
});
|
||||
},
|
||||
/**
|
||||
* Get the cart update params.
|
||||
*
|
||||
* @param {string} productId
|
||||
* @param {string} qty
|
||||
*/
|
||||
_getCartUpdateJsonParams(productId, qty) {
|
||||
return {
|
||||
product_id: parseInt(productId, 10),
|
||||
add_qty: parseInt(qty, 10),
|
||||
display: false,
|
||||
};
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_redirectNoWish: function () {
|
||||
window.location.href = '/shop/cart';
|
||||
},
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Handlers
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_onClickMyWish: function () {
|
||||
if (this.wishlistProductIDs.length === 0) {
|
||||
this._updateWishlistView();
|
||||
this._redirectNoWish();
|
||||
return;
|
||||
}
|
||||
window.location = '/shop/wishlist';
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
* @param {Event} ev
|
||||
*/
|
||||
_onClickAddWish: function (ev) {
|
||||
this._addNewProducts($(ev.currentTarget));
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
* @param {Event} ev
|
||||
*/
|
||||
_onChangeVariant: function (ev) {
|
||||
var $input = $(ev.target);
|
||||
var $parent = $input.closest('.js_product');
|
||||
var $el = $parent.find("[data-action='o_wishlist']");
|
||||
if (!_.contains(this.wishlistProductIDs, parseInt($input.val(), 10))) {
|
||||
$el.prop("disabled", false).removeClass('disabled').removeAttr('disabled');
|
||||
} else {
|
||||
$el.prop("disabled", true).addClass('disabled').attr('disabled', 'disabled');
|
||||
}
|
||||
$el.data('product-product-id', parseInt($input.val(), 10));
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
* @param {Event} ev
|
||||
*/
|
||||
_onChangeProduct: function (ev) {
|
||||
var productID = ev.currentTarget.value;
|
||||
var $el = $(ev.target).closest('.js_add_cart_variants').find("[data-action='o_wishlist']");
|
||||
|
||||
if (!_.contains(this.wishlistProductIDs, parseInt(productID, 10))) {
|
||||
$el.prop("disabled", false).removeClass('disabled').removeAttr('disabled');
|
||||
} else {
|
||||
$el.prop("disabled", true).addClass('disabled').attr('disabled', 'disabled');
|
||||
}
|
||||
$el.data('product-product-id', productID);
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
* @param {Event} ev
|
||||
*/
|
||||
_onClickWishRemove: function (ev) {
|
||||
this._removeWish(ev, false);
|
||||
},
|
||||
/**
|
||||
* @private
|
||||
* @param {Event} ev
|
||||
*/
|
||||
_onClickWishAdd: function (ev) {
|
||||
if (ev.currentTarget.classList.contains('disabled')) {
|
||||
ev.preventDefault();
|
||||
return;
|
||||
}
|
||||
var self = this;
|
||||
this.$('.wishlist-section .o_wish_add').addClass('disabled');
|
||||
this._addOrMoveWish(ev).then(function () {
|
||||
self.$('.wishlist-section .o_wish_add').removeClass('disabled');
|
||||
});
|
||||
},
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
.oe_website_sale {
|
||||
.td-wish-btn {
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
div.css_not_available .o_add_wishlist_dyn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.btn.o_add_wishlist_dyn.disabled i::before {
|
||||
content: "\f004";
|
||||
}
|
||||
}
|
||||
|
||||
// XS size
|
||||
@include media-breakpoint-down(md) {
|
||||
.oe_website_sale {
|
||||
.td-wish-btn {
|
||||
width: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
table.table-comparator .td-img img {
|
||||
// allows sizing the placeholder image to the "image" size of 100px
|
||||
max-height: 100px;
|
||||
}
|
||||
|
|
@ -0,0 +1,407 @@
|
|||
odoo.define('website_sale_wishlist.tour', function (require) {
|
||||
'use strict';
|
||||
|
||||
var rpc = require('web.rpc');
|
||||
var tour = require("web_tour.tour");
|
||||
|
||||
tour.register('shop_wishlist', {
|
||||
test: true,
|
||||
url: '/shop?search=Customizable Desk',
|
||||
},
|
||||
[
|
||||
{
|
||||
content: "click on add to wishlist",
|
||||
trigger: '.o_add_wishlist',
|
||||
},
|
||||
{
|
||||
content: "go to wishlist",
|
||||
extra_trigger: 'a[href="/shop/wishlist"] .badge:contains(1)',
|
||||
trigger: 'a[href="/shop/wishlist"]',
|
||||
},
|
||||
{
|
||||
content: "remove first item in whishlist",
|
||||
trigger: '.o_wish_rm:first',
|
||||
},
|
||||
{
|
||||
content: "go back to the store",
|
||||
trigger: "a[href='/shop']"
|
||||
},
|
||||
{
|
||||
content: "click on add to wishlist",
|
||||
trigger: '.o_add_wishlist',
|
||||
},
|
||||
{
|
||||
content: "check value of wishlist and go to login",
|
||||
extra_trigger: ".my_wish_quantity:contains(1)",
|
||||
trigger: 'a[href="/web/login"]',
|
||||
},
|
||||
{
|
||||
content: "submit login",
|
||||
trigger: ".oe_login_form",
|
||||
run: function (){
|
||||
$('.oe_login_form input[name="login"]').val("admin");
|
||||
$('.oe_login_form input[name="password"]').val("admin");
|
||||
$('.oe_login_form input[name="redirect"]').val("/shop?search=Customizable Desk");
|
||||
$('.oe_login_form').submit();
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "check that logged in",
|
||||
trigger: "li span:contains('Mitchell Admin')",
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "click on Customizable Desk (TEST)",
|
||||
trigger: '.oe_product_cart a:contains("Customizable Desk")',
|
||||
},
|
||||
{
|
||||
content: "check the first variant is already in wishlist",
|
||||
trigger: '#product_detail .o_add_wishlist_dyn:disabled',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "change variant",
|
||||
extra_trigger: '#product_detail label:contains(Aluminium) input',
|
||||
trigger: 'label:contains(Aluminium) input',
|
||||
},
|
||||
{
|
||||
content: "wait button enable and click on add to wishlist",
|
||||
extra_trigger: '#product_detail .o_add_wishlist_dyn:not(:disabled)',
|
||||
trigger: '#product_detail .o_add_wishlist_dyn',
|
||||
},
|
||||
{
|
||||
content: "check that wishlist contains 2 items and go to wishlist",
|
||||
extra_trigger: 'a[href="/shop/wishlist"] .badge:contains(2)',
|
||||
trigger: 'a[href="/shop/wishlist"]',
|
||||
},
|
||||
{
|
||||
content: "remove Customizable Desk (TEST)",
|
||||
trigger: 'tr:contains("Customizable Desk") .o_wish_rm:first',
|
||||
},
|
||||
{
|
||||
content: "check that wishlist contains 1 item",
|
||||
trigger: ".my_wish_quantity:contains(1)",
|
||||
run: function() {},
|
||||
},
|
||||
{
|
||||
content: "check B2B wishlist mode",
|
||||
trigger: "input#b2b_wish",
|
||||
},
|
||||
{
|
||||
content: "add item to cart",
|
||||
trigger: '.o_wish_add:eq(1)',
|
||||
},
|
||||
{
|
||||
content: "check that cart contains 1 item",
|
||||
trigger: ".my_cart_quantity:contains(1)",
|
||||
run: function() {},
|
||||
},
|
||||
{
|
||||
content: "check that wishlist contains 1 item",
|
||||
trigger: ".my_wish_quantity:contains(1)",
|
||||
run: function() {},
|
||||
},
|
||||
{
|
||||
content: "remove B2B wishlist mode",
|
||||
trigger: "input#b2b_wish",
|
||||
},
|
||||
{
|
||||
content: "add last item to cart",
|
||||
trigger: '.o_wish_add:eq(1)',
|
||||
},
|
||||
{
|
||||
content: "check that user is redirect - wishlist is empty",
|
||||
trigger: "#wrap #cart_products",
|
||||
run: function() {},
|
||||
},
|
||||
{
|
||||
content: "check that cart contains 2 items",
|
||||
trigger: ".my_cart_quantity:contains(2)",
|
||||
run: function() {},
|
||||
},
|
||||
{
|
||||
content: "check that wishlist is empty and no more visible",
|
||||
trigger: ":not(:has(.my_wish_quantity:visible))",
|
||||
run: function() {},
|
||||
},
|
||||
// Test dynamic attributes
|
||||
{
|
||||
content: "Create a product with dynamic attribute and its values.",
|
||||
trigger: 'body',
|
||||
run: function () {
|
||||
rpc.query({
|
||||
model: 'product.attribute',
|
||||
method: 'create',
|
||||
args: [{
|
||||
'name': "color",
|
||||
'display_type': 'color',
|
||||
'create_variant': 'dynamic'
|
||||
}],
|
||||
}).then(function (attributeId) {
|
||||
return rpc.query({
|
||||
model: 'product.template',
|
||||
method: 'create',
|
||||
args: [{
|
||||
'name': "Bottle",
|
||||
'is_published': true,
|
||||
'attribute_line_ids': [[0, 0, {
|
||||
'attribute_id': attributeId,
|
||||
'value_ids': [
|
||||
[0, 0, {
|
||||
'name': "red",
|
||||
'attribute_id': attributeId,
|
||||
}],
|
||||
[0, 0, {
|
||||
'name': "blue",
|
||||
'attribute_id': attributeId,
|
||||
}],
|
||||
[0, 0, {
|
||||
'name': "black",
|
||||
'attribute_id': attributeId,
|
||||
}],
|
||||
]
|
||||
}]],
|
||||
}],
|
||||
});
|
||||
}).then(function () {
|
||||
window.location.href = '/web/session/logout?redirect=/shop?search=Bottle';
|
||||
});
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "Add Bottle to wishlist from /shop",
|
||||
extra_trigger: '.oe_product_cart:contains("Bottle")',
|
||||
trigger: '.oe_product_cart:contains("Bottle") .o_add_wishlist',
|
||||
},
|
||||
{
|
||||
content: "Check that wishlist contains 1 item",
|
||||
trigger: '.my_wish_quantity:contains(1)',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Click on product",
|
||||
extra_trigger: '.oe_product_cart:contains("Bottle") .o_add_wishlist.disabled',
|
||||
trigger: '.oe_product_cart a:contains("Bottle")',
|
||||
},
|
||||
{
|
||||
content: "Select Bottle with second variant from /product",
|
||||
trigger: '.js_variant_change[data-value_name="blue"]',
|
||||
},
|
||||
{
|
||||
content: "Add product in wishlist",
|
||||
extra_trigger: '#product_detail .o_add_wishlist_dyn:not(".disabled")',
|
||||
trigger: '#product_detail .o_add_wishlist_dyn',
|
||||
},
|
||||
{
|
||||
content: "Select Bottle with third variant from /product",
|
||||
trigger: '.js_variant_change[data-value_name="black"]',
|
||||
},
|
||||
{
|
||||
content: "Add product in wishlist",
|
||||
extra_trigger: '#product_detail .o_add_wishlist_dyn:not(".disabled")',
|
||||
trigger: '#product_detail .o_add_wishlist_dyn',
|
||||
},
|
||||
{
|
||||
content: "Check that wishlist contains 3 items and go to wishlist",
|
||||
trigger: '.my_wish_quantity:contains(3)',
|
||||
run: function () {
|
||||
window.location.href = '/shop/wishlist';
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "Check wishlist contains first variant",
|
||||
trigger: '#o_comparelist_table tr:contains("red")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Check wishlist contains second variant",
|
||||
trigger: '#o_comparelist_table tr:contains("blue")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Check wishlist contains third variant, then go to login",
|
||||
trigger: '#o_comparelist_table tr:contains("black")',
|
||||
run: function () {
|
||||
window.location.href = "/web/login";
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "Submit login as admin",
|
||||
trigger: '.oe_login_form',
|
||||
run: function () {
|
||||
$('.oe_login_form input[name="login"]').val("admin");
|
||||
$('.oe_login_form input[name="password"]').val("admin");
|
||||
$('.oe_login_form input[name="redirect"]').val("/");
|
||||
$('.oe_login_form').submit();
|
||||
},
|
||||
},
|
||||
// Test one impossible combination while other combinations are possible
|
||||
{
|
||||
content: "Archive the first variant",
|
||||
trigger: '#top_menu:contains("Mitchell Admin")',
|
||||
run: function () {
|
||||
rpc.query({
|
||||
model: 'product.product',
|
||||
method: 'search',
|
||||
args: [[['name', '=', "Bottle"]]],
|
||||
})
|
||||
.then(function (productIds) {
|
||||
return rpc.query({
|
||||
model: 'product.product',
|
||||
method: 'write',
|
||||
args: [productIds[0], {active: false}],
|
||||
});
|
||||
})
|
||||
.then(function () {
|
||||
window.location.href = '/web/session/logout?redirect=/shop?search=Bottle';
|
||||
});
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "Check there is wishlist button on product from /shop",
|
||||
extra_trigger: '.js_sale',
|
||||
trigger: '.oe_product_cart:contains("Bottle") .o_add_wishlist',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Click on product",
|
||||
trigger: '.oe_product_cart a:contains("Bottle")',
|
||||
},
|
||||
{
|
||||
content: "Select Bottle with first variant (red) from /product",
|
||||
trigger: '.js_variant_change[data-value_name="red"]',
|
||||
},
|
||||
{
|
||||
content: "Check there is no wishlist button when selecting impossible variant",
|
||||
trigger: '#product_detail:not(:has(.o_add_wishlist))',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Select Bottle with second variant (blue) from /product",
|
||||
trigger: '.js_variant_change[data-value_name="blue"]',
|
||||
},
|
||||
{
|
||||
content: "Click on wishlist when selecting a possible variant from /product",
|
||||
trigger: '#product_detail .o_add_wishlist_dyn:not(.disabled)',
|
||||
},
|
||||
{
|
||||
content: "Check product added to wishlist and go to login",
|
||||
trigger: '.my_wish_quantity:contains(1)',
|
||||
run: function () {
|
||||
window.location.href = "/web/login";
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "Submit login",
|
||||
trigger: '.oe_login_form',
|
||||
run: function () {
|
||||
$('.oe_login_form input[name="login"]').val("admin");
|
||||
$('.oe_login_form input[name="password"]').val("admin");
|
||||
$('.oe_login_form input[name="redirect"]').val("/");
|
||||
$('.oe_login_form').submit();
|
||||
},
|
||||
},
|
||||
// test when all combinations are impossible
|
||||
{
|
||||
content: "Archive all variants",
|
||||
trigger: '#top_menu:contains("Mitchell Admin")',
|
||||
run: function () {
|
||||
rpc.query({
|
||||
model: 'product.product',
|
||||
method: 'search',
|
||||
args: [[['name', '=', "Bottle"]]],
|
||||
})
|
||||
.then(function (productIds) {
|
||||
return rpc.query({
|
||||
model: 'product.product',
|
||||
method: 'write',
|
||||
args: [productIds, {active: false}],
|
||||
});
|
||||
})
|
||||
.then(function () {
|
||||
window.location.href = '/web/session/logout?redirect=/shop?search=Bottle';
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Check that there is no wishlist button from /shop",
|
||||
extra_trigger: '.js_sale',
|
||||
trigger: '.oe_product_cart:contains("Bottle"):not(:has(.o_add_wishlist))',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Click on product",
|
||||
trigger: '.oe_product_cart a:contains("Bottle")',
|
||||
},
|
||||
{
|
||||
content: "Check that there is no wishlist button from /product",
|
||||
trigger: '#product_detail:not(:has(.o_add_wishlist_dyn))',
|
||||
run: function () {},
|
||||
},
|
||||
// Test if the wishlist button is active or not in /shop
|
||||
{
|
||||
content: "Go to '/shop?search=Customizable Desk'",
|
||||
trigger: 'body',
|
||||
run: function () {
|
||||
window.location.href = '/shop?search=Customizable Desk '
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "Click on the product",
|
||||
trigger: '.oe_product_image_link img',
|
||||
},
|
||||
{
|
||||
content: "Add the product in the wishlist",
|
||||
trigger: '#product_option_block .o_add_wishlist_dyn',
|
||||
},
|
||||
{
|
||||
content: "Added into the wishlist",
|
||||
trigger: '.my_wish_quantity.text-bg-primary:contains(1)',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Go to '/shop",
|
||||
trigger: '#top_menu_collapse a[href="/shop"]',
|
||||
},
|
||||
{
|
||||
content: "Search the product Customizable Desk'",
|
||||
trigger: 'form.o_wsale_products_searchbar_form input',
|
||||
run: function () {
|
||||
$('form.o_wsale_products_searchbar_form input[name="search"]').val("Customizable Desk");
|
||||
$('form.o_wsale_products_searchbar_form button').click();
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "The product is in the wishlist",
|
||||
trigger: '.oe_product_cart .o_wsale_product_information:has(.o_add_wishlist[disabled])',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "Go to the wishlist",
|
||||
trigger: 'a[href="/shop/wishlist"]',
|
||||
},
|
||||
{
|
||||
content: "Remove the product from the wishlist",
|
||||
trigger: '.o_wish_rm',
|
||||
},
|
||||
{
|
||||
content: "Go to '/shop",
|
||||
trigger: '#top_menu_collapse a[href="/shop"]',
|
||||
},
|
||||
{
|
||||
content: "Search the product Customizable Desk'",
|
||||
trigger: 'form.o_wsale_products_searchbar_form input',
|
||||
run: function () {
|
||||
$('form.o_wsale_products_searchbar_form input[name="search"]').val("Customizable Desk");
|
||||
$('form.o_wsale_products_searchbar_form button').click();
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "The product is not in the wishlist",
|
||||
trigger: '.oe_product_cart .o_wsale_product_information:not(:has(.o_add_wishlist[disabled]))',
|
||||
run: function () {},
|
||||
},
|
||||
]
|
||||
);
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
odoo.define('website_sale_wishlist_admin.tour', function (require) {
|
||||
'use strict';
|
||||
|
||||
const wTourUtils = require("website.tour_utils");
|
||||
|
||||
wTourUtils.registerWebsitePreviewTour('shop_wishlist_admin', {
|
||||
url: '/shop?search=Rock',
|
||||
test: true,
|
||||
},
|
||||
[
|
||||
{
|
||||
content: "Go to Rock shop page",
|
||||
trigger: 'iframe a:contains("Rock"):first',
|
||||
},
|
||||
{
|
||||
content: "check list view of variants is disabled initially (when on /product page)",
|
||||
trigger: 'iframe body:not(:has(.js_product_change))',
|
||||
extra_trigger: 'iframe #product_details',
|
||||
},
|
||||
...wTourUtils.clickOnEditAndWaitEditMode(),
|
||||
{
|
||||
content: "open customize tab",
|
||||
trigger: '.o_we_customize_snippet_btn',
|
||||
},
|
||||
{
|
||||
content: "open 'Variants' selector",
|
||||
extra_trigger: '#oe_snippets .o_we_customize_panel',
|
||||
trigger: '[data-name="variants_opt"] we-toggler',
|
||||
},
|
||||
{
|
||||
content: "click on 'List View of Variants'",
|
||||
trigger: 'we-button[data-name="variants_products_list_opt"]',
|
||||
},
|
||||
...wTourUtils.clickOnSave(),
|
||||
{
|
||||
content: "check page loaded after list of variant customization enabled",
|
||||
trigger: 'iframe .js_product_change',
|
||||
},
|
||||
{
|
||||
content: "Add red product in wishlist",
|
||||
trigger: 'iframe #product_detail .o_add_wishlist_dyn:not(".disabled")',
|
||||
},
|
||||
{
|
||||
content: "Check that wishlist contains 1 items",
|
||||
trigger: 'iframe .my_wish_quantity:contains(1)',
|
||||
run: function () {
|
||||
window.location.href = '/@/shop/wishlist';
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Check wishlist contains first variant",
|
||||
trigger: 'iframe #o_comparelist_table tr:contains("red")',
|
||||
run: function () {
|
||||
window.location.href = '/@/shop?search=Rock';
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Go to Rock shop page",
|
||||
trigger: 'iframe a:contains("Rock"):first',
|
||||
},
|
||||
{
|
||||
content: "Switch to black Rock",
|
||||
trigger: 'iframe .js_product span:contains("black")',
|
||||
},
|
||||
{
|
||||
content: "Add black rock to wishlist",
|
||||
trigger: 'iframe #product_detail .o_add_wishlist_dyn:not(".disabled")',
|
||||
},
|
||||
{
|
||||
content: "Check that black product was added",
|
||||
trigger: 'iframe .my_wish_quantity:contains(2)',
|
||||
run: function () {
|
||||
window.location.href = '/@/shop/wishlist';
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Check wishlist contains both variants",
|
||||
extra_trigger: 'iframe #o_comparelist_table tr:contains("red")',
|
||||
trigger: 'iframe #o_comparelist_table tr:contains("black")',
|
||||
run: function () {}, // This is a check
|
||||
},
|
||||
]
|
||||
);
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import test_wishlist_process
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import odoo.tests
|
||||
|
||||
|
||||
@odoo.tests.tagged('-at_install', 'post_install')
|
||||
class TestUi(odoo.tests.HttpCase):
|
||||
def test_01_wishlist_tour(self):
|
||||
|
||||
self.env['product.template'].search([]).write({'website_published': False})
|
||||
# Setup attributes and attributes values
|
||||
self.product_attribute_1 = self.env['product.attribute'].create({
|
||||
'name': 'Legs',
|
||||
'sequence': 10,
|
||||
})
|
||||
product_attribute_value_1 = self.env['product.attribute.value'].create({
|
||||
'name': 'Steel',
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'sequence': 1,
|
||||
})
|
||||
product_attribute_value_2 = self.env['product.attribute.value'].create({
|
||||
'name': 'Aluminium',
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'sequence': 2,
|
||||
})
|
||||
product_attribute_2 = self.env['product.attribute'].create({
|
||||
'name': 'Color',
|
||||
'sequence': 20,
|
||||
})
|
||||
product_attribute_value_3 = self.env['product.attribute.value'].create({
|
||||
'name': 'White',
|
||||
'attribute_id': product_attribute_2.id,
|
||||
'sequence': 1,
|
||||
})
|
||||
product_attribute_value_4 = self.env['product.attribute.value'].create({
|
||||
'name': 'Black',
|
||||
'attribute_id': product_attribute_2.id,
|
||||
'sequence': 2,
|
||||
})
|
||||
|
||||
# Create product template
|
||||
self.product_product_4_product_template = self.env['product.template'].create({
|
||||
'name': 'Customizable Desk (TEST)',
|
||||
'standard_price': 500.0,
|
||||
'list_price': 750.0,
|
||||
'website_published': True,
|
||||
})
|
||||
|
||||
# Generate variants
|
||||
self.env['product.template.attribute.line'].create([{
|
||||
'product_tmpl_id': self.product_product_4_product_template.id,
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'value_ids': [(4, product_attribute_value_1.id), (4, product_attribute_value_2.id)],
|
||||
}, {
|
||||
'product_tmpl_id': self.product_product_4_product_template.id,
|
||||
'attribute_id': product_attribute_2.id,
|
||||
'value_ids': [(4, product_attribute_value_3.id), (4, product_attribute_value_4.id)],
|
||||
|
||||
}])
|
||||
|
||||
self.env.ref('base.user_admin').name = 'Mitchell Admin'
|
||||
|
||||
self.start_tour("/", 'shop_wishlist')
|
||||
|
||||
def test_02_wishlist_admin_tour(self):
|
||||
attribute = self.env['product.attribute'].create({
|
||||
'name': 'color',
|
||||
'display_type': 'color',
|
||||
'create_variant': 'always',
|
||||
})
|
||||
self.env['product.template'].create({
|
||||
'name': 'Rock',
|
||||
'is_published': True,
|
||||
'attribute_line_ids': [(0, 0, {
|
||||
'attribute_id': attribute.id,
|
||||
'value_ids': [
|
||||
(0, 0, {
|
||||
'name': 'red',
|
||||
'attribute_id': attribute.id,
|
||||
}),
|
||||
(0, 0, {
|
||||
'name': 'blue',
|
||||
'attribute_id': attribute.id,
|
||||
}),
|
||||
(0, 0, {
|
||||
'name': 'black',
|
||||
'attribute_id': attribute.id,
|
||||
}),
|
||||
],
|
||||
})],
|
||||
})
|
||||
self.start_tour("/", 'shop_wishlist_admin', login="admin")
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="snippet_options" inherit_id="website.snippet_options" name="Wishlist Snippet Options">
|
||||
<xpath expr="." position="inside">
|
||||
<div data-selector="#wrapwrap > header"
|
||||
data-no-check="true"
|
||||
groups="website.group_website_designer">
|
||||
<we-checkbox string="Show Empty Wishlist"
|
||||
data-customize-website-views="website_sale_wishlist.header_hide_empty_wishlist_link|"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
</div>
|
||||
</xpath>
|
||||
<xpath expr="//we-button[hasclass('o_we_add_to_cart_btn')]" position="after">
|
||||
<we-button title="Wishlist" class="fa fa-fw fa-heart"
|
||||
data-customize-website-views="website_sale_wishlist.add_to_wishlist"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
</xpath>
|
||||
<xpath expr="//we-button[hasclass('o_we_buy_now_btn')]" position="after">
|
||||
<we-button title="Wishlist"
|
||||
data-customize-website-views="website_sale_wishlist.product_add_to_wishlist"
|
||||
data-no-preview="true"
|
||||
data-reload="/">
|
||||
<i class="fa fa-fw fa-heart"/>
|
||||
Wishlist
|
||||
</we-button>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,217 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="add_to_wishlist" inherit_id="website_sale.products_item" name="Wishlist Button" priority="20">
|
||||
<xpath expr="//div[hasclass('o_wsale_product_btn')]" position="inside">
|
||||
<t t-nocache="The wishlist depends on the user and must not be shared with other users. As this rendering is in the loop, the product value is set in the template, we must retain the id of the product on which we are."
|
||||
t-nocache-product_template_id="product.id">
|
||||
<t t-set="product" t-value="products.filtered(lambda p: p.id == product_template_id)"/>
|
||||
<t t-set="in_wish" t-value="product._is_in_wishlist()"/>
|
||||
<t t-set="product_variant_id" t-value="product._get_first_possible_variant_id()"/>
|
||||
<button t-if="product_variant_id" type="button" role="button" class="btn btn-outline-primary bg-white o_add_wishlist" t-att-disabled='in_wish or None' title="Add to Wishlist" t-att-data-product-template-id="product.id" t-att-data-product-product-id="product_variant_id" data-action="o_wishlist"><span class="fa fa-heart" role="img" aria-label="Add to wishlist"></span></button>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="product_add_to_wishlist" inherit_id="website_sale.product" name="Wishlist Button" priority="20">
|
||||
<xpath expr="//div[@id='product_option_block']" position="inside">
|
||||
<t t-nocache="The wishlist depends on the user and must not be shared with other users. The product come from the controller.">
|
||||
<t t-set="product_variant" t-value="product_variant or product._create_first_product_variant()"/>
|
||||
<t t-set="in_wish" t-value="product_variant and product_variant._is_in_wishlist()"/>
|
||||
<button t-if="product_variant" type="button" role="button" class="btn btn-link px-0 pe-3 o_add_wishlist_dyn" t-att-disabled='in_wish or None' t-att-data-product-template-id="product.id" t-att-data-product-product-id="product_variant.id" data-action="o_wishlist" title="Add to wishlist"><i class="fa fa-heart-o me-2" role="img" aria-label="Add to wishlist"/>Add to wishlist</button>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="header_wishlist_link" name="Header Wishlist Link">
|
||||
<t t-nocache="The wishlist may vary and depends on the user."
|
||||
t-nocache-_icon="_icon"
|
||||
t-nocache-_item_class="_item_class"
|
||||
t-nocache-_link_class="_link_class"
|
||||
t-nocache-_text="_text">
|
||||
<t t-set="wishcount" t-value="len(request.env['product.wishlist'].current())"/>
|
||||
<t t-set="show_wishes" t-value="True"/>
|
||||
<li t-attf-class="o_wsale_my_wish #{not show_wishes and 'd-none'} #{_item_class}">
|
||||
<a href="/shop/wishlist" t-attf-class="#{_link_class}">
|
||||
<i t-if="_icon" class="fa fa-1x fa-heart"/>
|
||||
<span t-if="_text">Wishlist</span>
|
||||
<sup t-esc="wishcount" t-attf-class="my_wish_quantity o_animate_blink badge text-bg-primary"/>
|
||||
</a>
|
||||
</li>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="header_hide_empty_wishlist_link" inherit_id="website_sale_wishlist.header_wishlist_link">
|
||||
<xpath expr="//t[@t-set='show_wishes']" position="after">
|
||||
<t t-set="show_wishes" t-value="show_wishes and wishcount > 0"/>
|
||||
</xpath>
|
||||
<xpath expr="//li[contains(@t-attf-class, 'o_wsale_my_wish')]" position="attributes">
|
||||
<attribute name="t-attf-class" add="o_wsale_my_wish_hide_empty" separator=" "/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_default" inherit_id="website_sale.template_header_default">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item me-lg-3'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_hamburger" inherit_id="website_sale.template_header_hamburger">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_text" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_vertical" inherit_id="website_sale.template_header_vertical">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-lg-3'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_sidebar" inherit_id="website_sale.template_header_sidebar">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_text" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_slogan" inherit_id="website_sale.template_header_slogan">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-lg-3'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_contact" inherit_id="website_sale.template_header_contact">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-lg-3'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_boxed" inherit_id="website_sale.template_header_boxed">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_text" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-lg-3'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_centered_logo" inherit_id="website_sale.template_header_centered_logo">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-1'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_image" inherit_id="website_sale.template_header_image">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-lg-2'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_hamburger_full" inherit_id="website_sale.template_header_hamburger_full">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_icon" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item ms-lg-2'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_magazine" inherit_id="website_sale.template_header_magazine">
|
||||
<xpath expr="//t[@t-call='website_sale.header_cart_link']" position="after">
|
||||
<t t-call="website_sale_wishlist.header_wishlist_link">
|
||||
<t t-set="_text" t-value="True"/>
|
||||
<t t-set="_item_class" t-value="'nav-item'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="product_wishlist" name="Wishlist Page">
|
||||
<t t-call="website.layout">
|
||||
<t t-set="additional_title">Shop Wishlist</t>
|
||||
<div id="wrap" class="js_sale">
|
||||
<div class="oe_structure" id="oe_structure_website_sale_wishlist_product_wishlist_1"/>
|
||||
<div class="container oe_website_sale pt-3">
|
||||
<section class="container wishlist-section">
|
||||
<h3>My Wishlist</h3>
|
||||
<div class="checkbox">
|
||||
<label class='text-muted'><input type="checkbox" id='b2b_wish' value="1" class="mr8"/>Add product to my cart but keep it in my wishlist</label>
|
||||
</div>
|
||||
<table class="table table-bordered table-striped table-hover text-center mt16 table-comparator " style="table-layout:auto" id="o_comparelist_table">
|
||||
<body>
|
||||
<t t-foreach="wishes" t-as="wish">
|
||||
<t t-set="combination_info" t-value="wish.product_id._get_combination_info_variant()"/>
|
||||
<tr t-att-data-wish-id='wish.id' t-att-data-product-id='wish.product_id.id'
|
||||
t-att-data-product-tracking-info="json.dumps(request.env['product.template'].get_google_analytics_data(combination_info))">
|
||||
<td class='td-img align-middle'>
|
||||
<a t-att-href="wish.product_id.website_url">
|
||||
<img t-attf-src="/web/image/product.product/#{wish.product_id.id}/image_128" class="img img-fluid" style="margin:auto;" alt="Product image"/>
|
||||
</a>
|
||||
</td>
|
||||
<td class='text-start align-middle'>
|
||||
<strong><a t-att-href="wish.product_id.website_url"><t t-esc="wish.product_id.display_name" /></a></strong>
|
||||
<small class='d-none d-md-block'><p t-field="wish.product_id.description_sale" class="text-muted"/></small>
|
||||
<button type="button" class="btn btn-link o_wish_rm no-decoration"><small><i class='fa fa-trash-o'></i> Remove</small></button>
|
||||
</td>
|
||||
<td class="align-middle" t-if="combination_info['prevent_zero_price_sale']">
|
||||
<span t-field="website.prevent_zero_price_sale_text"/>
|
||||
</td>
|
||||
<td class="align-middle o_wish_price" t-else="">
|
||||
<t t-esc="combination_info['price']" t-options="{'widget': 'monetary', 'display_currency': website.pricelist_id.currency_id}"/>
|
||||
<small t-if="combination_info['base_unit_price']" class="cart_product_base_unit_price d-block text-muted" groups="website_sale.group_show_uom_price">
|
||||
<t t-call='website_sale.base_unit_price'><t t-set='product' t-value='wish.product_id' /></t>
|
||||
</small>
|
||||
</td>
|
||||
<td class='text-center td-wish-btn align-middle'>
|
||||
<input name="product_id" t-att-value="wish.product_id.id" type="hidden"/>
|
||||
<a t-if="combination_info['prevent_zero_price_sale']" t-att-href="website.contact_us_button_url" class="btn btn-primary btn_cta">Contact Us</a>
|
||||
<button id="add_to_cart_button" t-else="" type="button" role="button" class="btn btn-secondary btn-block o_wish_add mb4" >
|
||||
Add <span class='d-none d-md-inline'>to Cart</span>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</t>
|
||||
</body>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue