Начальное наполнение
This commit is contained in:
parent
02d8ad5c6d
commit
1b932c3401
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -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
|
28
__manifest__.py
Normal file
28
__manifest__.py
Normal file
@ -0,0 +1,28 @@
|
||||
# -*- 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.
|
||||
""",
|
||||
'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',
|
||||
}
|
2
controllers/__init__.py
Normal file
2
controllers/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import main
|
68
controllers/main.py
Normal file
68
controllers/main.py
Normal file
@ -0,0 +1,68 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import json
|
||||
|
||||
from odoo.http import request, route
|
||||
from odoo.addons.website_sale.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
class WebsiteSaleWishlist(WebsiteSale):
|
||||
|
||||
def _get_additional_shop_values(self, values):
|
||||
""" Hook to update values used for rendering website_sale.products template """
|
||||
vals = super()._get_additional_shop_values(values)
|
||||
vals['products_in_wishlist'] = request.env['product.wishlist'].current().product_id.product_tmpl_id
|
||||
return vals
|
||||
|
||||
@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()['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/<int:wish_id>', type='json', auth='public', website=True)
|
||||
def rm_from_wishlist(self, wish_id, **kw):
|
||||
wish = request.env['product.wishlist'].browse(wish_id)
|
||||
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
|
203
i18n/ar.po
Normal file
203
i18n/ar.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default 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__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/hide 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 "قائمة الأمنيات"
|
197
i18n/az.po
Normal file
197
i18n/az.po
Normal file
@ -0,0 +1,197 @@
|
||||
# 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>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. 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__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 ""
|
||||
|
||||
#. 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 ""
|
203
i18n/bg.po
Normal file
203
i18n/bg.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Camille Dantinne <cmd@odoo.com>, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# KeyVillage, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default 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__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/hide 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 ""
|
197
i18n/bs.po
Normal file
197
i18n/bs.po
Normal file
@ -0,0 +1,197 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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__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 ""
|
||||
|
||||
#. 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 "Cijenovnik"
|
||||
|
||||
#. 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 "Proizvod"
|
||||
|
||||
#. 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 "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 ""
|
212
i18n/ca.po
Normal file
212
i18n/ca.po
Normal file
@ -0,0 +1,212 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Espinola, 2023
|
||||
# Josep Anton Belchi, 2023
|
||||
# marcescu, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Sandra Franch <sandra.franch@upc.edu>, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Carles Antoli <carlesantoli@hotmail.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr "Moneda per defecte"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. 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__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 "Variant 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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
205
i18n/cs.po
Normal file
205
i18n/cs.po
Normal file
@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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 uživatelem"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno dne"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Default Currency"
|
||||
msgstr "Výchozí měna"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. 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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno uživatelem"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. 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 "Produktová varianta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Produktový wishlist"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.product_wishlist
|
||||
msgid "Product image"
|
||||
msgstr "Produktový obrázek"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Webová strá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í"
|
200
i18n/da.po
Normal file
200
i18n/da.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Sammi Iversen <sammi@vkdata.dk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr "Standard 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__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/hide empty wishlist"
|
||||
msgstr "Vis/skjul tom ønskeliste"
|
||||
|
||||
#. 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"
|
203
i18n/de.po
Normal file
203
i18n/de.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr "Standardwä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__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/hide empty wishlist"
|
||||
msgstr "Leere Wunschliste anzeigen/verbergen"
|
||||
|
||||
#. 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"
|
197
i18n/el.po
Normal file
197
i18n/el.po
Normal file
@ -0,0 +1,197 @@
|
||||
# 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: 2023-05-16 13:50+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"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 "Default 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__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 "Λίστα Επιθυμιών"
|
205
i18n/es.po
Normal file
205
i18n/es.po
Normal file
@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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=\"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 "Añadir producto a mi carro pero 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 "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 "Default Currency"
|
||||
msgstr "Moneda predeterminada"
|
||||
|
||||
#. 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__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/hide empty wishlist"
|
||||
msgstr "Mostrar u ocultar 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"
|
205
i18n/es_419.po
Normal file
205
i18n/es_419.po
Normal file
@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\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=\"Agregar 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á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 "Default Currency"
|
||||
msgstr "Divisa predeterminada"
|
||||
|
||||
#. 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__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 del 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/hide empty wishlist"
|
||||
msgstr "Mostrar u ocultar 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"
|
210
i18n/et.po
Normal file
210
i18n/et.po
Normal file
@ -0,0 +1,210 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# JanaAvalah, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Aktiivne"
|
||||
|
||||
#. 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 "Loodud (kelle poolt?)"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Default Currency"
|
||||
msgstr "Vaikimisi valuuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Kuvatav 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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr "Näita/peida 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"
|
205
i18n/fa.po
Normal file
205
i18n/fa.po
Normal file
@ -0,0 +1,205 @@
|
||||
# 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
|
||||
# Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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 "Default 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__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/hide 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 "علاقهمندیها"
|
207
i18n/fi.po
Normal file
207
i18n/fi.po
Normal file
@ -0,0 +1,207 @@
|
||||
# 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>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default Currency"
|
||||
msgstr "Oletusvaluutta"
|
||||
|
||||
#. 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__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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
206
i18n/fr.po
Normal file
206
i18n/fr.po
Normal file
@ -0,0 +1,206 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Actif"
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr "Devise par défaut"
|
||||
|
||||
#. 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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Mis à 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 "Mis à 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 "Détenteur"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr "Afficher/masquer 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"
|
196
i18n/gu.po
Normal file
196
i18n/gu.po
Normal file
@ -0,0 +1,196 @@
|
||||
# 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: 2023-05-16 13:50+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"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. 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__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 ""
|
202
i18n/he.po
Normal file
202
i18n/he.po
Normal file
@ -0,0 +1,202 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 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 "<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 "Default 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__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/hide 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 "מוצרים מועדפים"
|
199
i18n/hr.po
Normal file
199
i18n/hr.po
Normal file
@ -0,0 +1,199 @@
|
||||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Vladimir Olujić <olujic.vladimir@storm.hr>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "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 "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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__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 ""
|
||||
|
||||
#. 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 "Cjenik"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "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 ""
|
209
i18n/hu.po
Normal file
209
i18n/hu.po
Normal file
@ -0,0 +1,209 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# A . <tiboreu@protonmail.com>, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Tamás Dombos, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# krnkris, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# Szabolcs Rádi, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Szabolcs Rádi, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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ára"
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr "Alapértelmezett 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 ""
|
||||
|
||||
#. 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__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"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
203
i18n/id.po
Normal file
203
i18n/id.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default Currency"
|
||||
msgstr "Mata Uang Standar"
|
||||
|
||||
#. 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__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/hide empty wishlist"
|
||||
msgstr "Tunjukkan/sembunyikan wishlist kosong"
|
||||
|
||||
#. 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 "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"
|
192
i18n/is.po
Normal file
192
i18n/is.po
Normal file
@ -0,0 +1,192 @@
|
||||
# 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: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\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 "Virkur"
|
||||
|
||||
#. 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 "Tengiliður"
|
||||
|
||||
#. 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 "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 "Stofnað þann"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nafn"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Eigandi"
|
||||
|
||||
#. 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ðlisti"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "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 ""
|
205
i18n/it.po
Normal file
205
i18n/it.po
Normal file
@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Marianna Ciofani, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr "Valuta predefinita"
|
||||
|
||||
#. 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__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/hide empty wishlist"
|
||||
msgstr "Mostra/nascondi lista dei 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"
|
204
i18n/ja.po
Normal file
204
i18n/ja.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Junko Augias, 2023
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2024\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 "Default 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__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/hide 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 "ウィッシュリスト"
|
197
i18n/km.po
Normal file
197
i18n/km.po
Normal file
@ -0,0 +1,197 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Samkhann Seang <seangsamkhann@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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 "Default 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__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 ""
|
203
i18n/ko.po
Normal file
203
i18n/ko.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default 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__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/hide 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 "관심 목록"
|
192
i18n/lb.po
Normal file
192
i18n/lb.po
Normal file
@ -0,0 +1,192 @@
|
||||
# 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: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:16+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default 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__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 ""
|
207
i18n/lt.po
Normal file
207
i18n/lt.po
Normal file
@ -0,0 +1,207 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2023
|
||||
# Šarūnas Ažna <sarunas.azna@gmail.com>, 2023
|
||||
# Naglis Jonaitis, 2023
|
||||
# Arunas V. <arunas@devoro.com>, 2023
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Tautvydas M, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Tautvydas M, 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 ""
|
||||
|
||||
#. 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\"/> 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 ""
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr "Numatytoji 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 ""
|
||||
|
||||
#. 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__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/hide 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"
|
204
i18n/lv.po
Normal file
204
i18n/lv.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# InfernalLV <karlisdreizis@gmail.com>, 2023
|
||||
# Anzelika Adejanova, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Will Sensors, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: 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 ""
|
||||
|
||||
#. 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 "Kontaktpersona"
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr "Noklusētā valūta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Attēlotais nosaukums"
|
||||
|
||||
#. 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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunināja"
|
||||
|
||||
#. 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 atjaunināts"
|
||||
|
||||
#. 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 "Cenu lapa"
|
||||
|
||||
#. 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 variants"
|
||||
|
||||
#. 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/hide 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 "Mājas lapa"
|
||||
|
||||
#. 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 ""
|
201
i18n/mn.po
Normal file
201
i18n/mn.po
Normal file
@ -0,0 +1,201 @@
|
||||
# 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
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default 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__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 ""
|
199
i18n/nb.po
Normal file
199
i18n/nb.po
Normal file
@ -0,0 +1,199 @@
|
||||
# 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: 2023-05-16 13:50+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"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. 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__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"
|
207
i18n/nl.po
Normal file
207
i18n/nl.po
Normal file
@ -0,0 +1,207 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 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 "Default Currency"
|
||||
msgstr "Standaard valuta"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. 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__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/hide empty wishlist"
|
||||
msgstr "Toon/verberg 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"
|
202
i18n/pl.po
Normal file
202
i18n/pl.po
Normal file
@ -0,0 +1,202 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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 "Default Currency"
|
||||
msgstr "Domyślna 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__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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
198
i18n/pt.po
Normal file
198
i18n/pt.po
Normal file
@ -0,0 +1,198 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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 "Default Currency"
|
||||
msgstr "Moeda por Defeito"
|
||||
|
||||
#. 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__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/hide 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 ""
|
204
i18n/pt_BR.po
Normal file
204
i18n/pt_BR.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 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=\"Add to wishlist\"/>"
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr "Moeda padrão"
|
||||
|
||||
#. 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 usuário."
|
||||
|
||||
#. 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__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ços"
|
||||
|
||||
#. 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 "Variante do produto"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model,name:website_sale_wishlist.model_product_wishlist
|
||||
msgid "Product Wishlist"
|
||||
msgstr "Lista de desejos de produtos"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr "Mostrar/ocultar 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"
|
199
i18n/ro.po
Normal file
199
i18n/ro.po
Normal file
@ -0,0 +1,199 @@
|
||||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Cozmin Candea <office@terrabit.ro>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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\"/> 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 "Default Currency"
|
||||
msgstr ""
|
||||
|
||||
#. 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__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"
|
206
i18n/ru.po
Normal file
206
i18n/ru.po
Normal file
@ -0,0 +1,206 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Collex100, 2023
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2023
|
||||
# Alena Vlasova, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default 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__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/hide 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 "Избранное"
|
198
i18n/sk.po
Normal file
198
i18n/sk.po
Normal file
@ -0,0 +1,198 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: 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 "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 ""
|
||||
|
||||
#. 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 "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 "Default Currency"
|
||||
msgstr "Predvolená 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__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/hide 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 ""
|
208
i18n/sl.po
Normal file
208
i18n/sl.po
Normal file
@ -0,0 +1,208 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
# laznikd <laznik@mentis.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default Currency"
|
||||
msgstr "Privzeta 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__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 "Izdelek"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
204
i18n/sr.po
Normal file
204
i18n/sr.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Milan Bojovic, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default Currency"
|
||||
msgstr "Podrazumevana 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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednji put 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 "Poslednji put 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 "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 "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 prodavnice"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_wishlist.snippet_options
|
||||
msgid "Show/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
198
i18n/sr@latin.po
Normal file
198
i18n/sr@latin.po
Normal file
@ -0,0 +1,198 @@
|
||||
# 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: 2023-05-16 13:50+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"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Default Currency"
|
||||
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.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__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,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 ""
|
||||
|
||||
#. 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 "Internet 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 ""
|
209
i18n/sv.po
Normal file
209
i18n/sv.po
Normal file
@ -0,0 +1,209 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Lasse L, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2023
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
||||
# Simon S, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 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 den"
|
||||
|
||||
#. module: website_sale_wishlist
|
||||
#: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__currency_id
|
||||
msgid "Default Currency"
|
||||
msgstr "Standardvaluta"
|
||||
|
||||
#. 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__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 den"
|
||||
|
||||
#. 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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
203
i18n/th.po
Normal file
203
i18n/th.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+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 "Default 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__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/hide 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 "รายการที่อยากได้ "
|
210
i18n/tr.po
Normal file
210
i18n/tr.po
Normal file
@ -0,0 +1,210 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Murat Durmuş <muratd@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 "Default Currency"
|
||||
msgstr "Varsayılan 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__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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
203
i18n/uk.po
Normal file
203
i18n/uk.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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 "Default 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__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/hide 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 "Список побажань"
|
199
i18n/vi.po
Normal file
199
i18n/vi.po
Normal file
@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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 ""
|
||||
|
||||
#. 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\"/> 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 danh sách yêu thích"
|
||||
|
||||
#. 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 "Default Currency"
|
||||
msgstr "Tiền tệ mặc định"
|
||||
|
||||
#. 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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. 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 "Danh sách 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/hide empty wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
194
i18n/website_sale_wishlist.pot
Normal file
194
i18n/website_sale_wishlist.pot
Normal file
@ -0,0 +1,194 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+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 "Default 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__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/hide 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 ""
|
203
i18n/zh_CN.po
Normal file
203
i18n/zh_CN.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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 "Default 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__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/hide 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 "愿望单"
|
200
i18n/zh_TW.po
Normal file
200
i18n/zh_TW.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_wishlist
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:10+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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 "Default 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__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/hide 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 "願望清單"
|
3
models/__init__.py
Normal file
3
models/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import product_wishlist
|
||||
from . import res_users
|
96
models/product_wishlist.py
Normal file
96
models/product_wishlist.py
Normal file
@ -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='website_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')
|
13
models/res_users.py
Normal file
13
models/res_users.py
Normal file
@ -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
|
5
security/ir.model.access.csv
Normal file
5
security/ir.model.access.csv
Normal file
@ -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
|
|
18
security/website_sale_wishlist_security.xml
Normal file
18
security/website_sale_wishlist_security.xml
Normal file
@ -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>
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15.724 6.397C16.377 4.94 17.852 4 19.481 4h11.037c1.63 0 3.104.94 3.757 2.397L37.236 13H41.9c2.46 0 4.367 2.099 4.07 4.481l-3.106 25C42.613 44.49 40.866 46 38.793 46H11.207c-2.074 0-3.82-1.51-4.07-3.519l-3.107-25C3.734 15.1 5.64 13 8.1 13h4.663l2.961-6.603ZM32.917 13H17.082c0-.56.123-1.134.39-1.691l.956-2C19.102 7.9 20.551 7 22.144 7h5.711c1.593 0 3.042.9 3.716 2.308l.957 2c.266.558.39 1.132.39 1.692Z" fill="#F9464C"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.514 45.016a3.963 3.963 0 0 1-1.377-2.535l-3.107-25C3.734 15.1 5.64 13 8.1 13h4.663l2.961-6.603C16.377 4.94 17.852 4 19.481 4h11.037c1.63 0 3.104.94 3.757 2.397l2.59 5.777C35.5 28.256 23.848 41.405 8.515 45.016ZM17.082 13h15.835c0-.56-.123-1.134-.39-1.691l-.956-2C30.897 7.9 29.448 7 27.855 7h-5.711c-1.593 0-3.042.9-3.716 2.308l-.956 2a3.904 3.904 0 0 0-.39 1.692Z" fill="#FC868B"/><path d="M36.087 23.945c1.87 3.077.777 7.002-2.44 8.767l-11.084 6.082c-.774.425-1.758.171-2.208-.57L13.913 27.62c-1.87-3.077-.777-7.003 2.44-8.768 3.216-1.765 7.34-.7 9.209 2.377l.483.796.833-.457c3.216-1.765 7.34-.7 9.209 2.377Z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
16
static/src/js/website_sale.js
Normal file
16
static/src/js/website_sale.js
Normal file
@ -0,0 +1,16 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { WebsiteSale } from '@website_sale/js/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);
|
||||
},
|
||||
});
|
298
static/src/js/website_sale_wishlist.js
Normal file
298
static/src/js/website_sale_wishlist.js
Normal file
@ -0,0 +1,298 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import publicWidget from "@web/legacy/js/public/public_widget";
|
||||
import wSaleUtils from "@website_sale/js/website_sale_utils";
|
||||
import VariantMixin from "@website_sale/js/sale_variant_mixin";
|
||||
import { RPCError } from "@web/core/network/rpc_service";
|
||||
|
||||
// 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') || '[]');
|
||||
this.rpc = this.bindService("rpc");
|
||||
},
|
||||
/**
|
||||
* 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 != +$('header#top .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 && !self.wishlistProductIDs.includes(productId)) {
|
||||
return self.rpc('/shop/wishlist/add', {
|
||||
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');
|
||||
}
|
||||
}).catch(function (e) {
|
||||
$el.prop("disabled", false).removeClass('disabled');
|
||||
if (!(e instanceof RPCError)) {
|
||||
return Promise.reject(e);
|
||||
}
|
||||
});
|
||||
}
|
||||
}).catch(function (e) {
|
||||
$el.prop("disabled", false).removeClass('disabled');
|
||||
if (!(e instanceof RPCError)) {
|
||||
return Promise.reject(e);
|
||||
}
|
||||
});
|
||||
},
|
||||
/**
|
||||
* @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('/shop/wishlist/remove/' + wish).then(function () {
|
||||
$(tr).hide();
|
||||
});
|
||||
|
||||
this.wishlistProductIDs = this.wishlistProductIDs.filter((p) => p !== 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 tr = $(e.currentTarget).parents('tr');
|
||||
var product = tr.data('product-id');
|
||||
$('.o_wsale_my_cart').removeClass('d-none');
|
||||
|
||||
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 = qty;
|
||||
$tr.trigger('add_to_cart_event', [productTrackingInfo]);
|
||||
}
|
||||
const callService = this.call.bind(this)
|
||||
return this.rpc("/shop/cart/update_json", {
|
||||
...this._getCartUpdateJsonParams(productID, qty),
|
||||
display: false,
|
||||
}).then(function (data) {
|
||||
wSaleUtils.updateCartNavBar(data);
|
||||
wSaleUtils.showCartNotification(callService, data.notification_info);
|
||||
});
|
||||
},
|
||||
/**
|
||||
* 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 (!this.wishlistProductIDs.includes(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 (!this.wishlistProductIDs.includes(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');
|
||||
});
|
||||
},
|
||||
});
|
27
static/src/scss/website_sale_wishlist.scss
Normal file
27
static/src/scss/website_sale_wishlist.scss
Normal file
@ -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;
|
||||
}
|
410
static/tests/tours/website_sale_wishlist.js
Normal file
410
static/tests/tours/website_sale_wishlist.js
Normal file
@ -0,0 +1,410 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { jsonrpc } from "@web/core/network/rpc_service";
|
||||
|
||||
registry.category("web_tour.tours").add('shop_wishlist', {
|
||||
test: true,
|
||||
checkDelay: 250,
|
||||
url: '/shop?search=Customizable Desk',
|
||||
steps: () => [
|
||||
{
|
||||
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')",
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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 () {
|
||||
jsonrpc("/web/dataset/call_kw/product.attribute/create", {
|
||||
model: 'product.attribute',
|
||||
method: 'create',
|
||||
args: [{
|
||||
'name': "color",
|
||||
'display_type': 'color',
|
||||
'create_variant': 'dynamic'
|
||||
}],
|
||||
kwargs: {},
|
||||
}).then(function (attributeId) {
|
||||
return jsonrpc("/web/dataset/call_kw/product.template/create", {
|
||||
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,
|
||||
}],
|
||||
]
|
||||
}]],
|
||||
}],
|
||||
kwargs: {},
|
||||
});
|
||||
}).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)',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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")',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
content: "Check wishlist contains second variant",
|
||||
trigger: '#o_comparelist_table tr:contains("blue")',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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: 'header#top:contains("Mitchell Admin")',
|
||||
run: function () {
|
||||
jsonrpc("/web/dataset/call_kw/product.product/search", {
|
||||
model: 'product.product',
|
||||
method: 'search',
|
||||
args: [[['name', '=', "Bottle"]]],
|
||||
kwargs: {},
|
||||
})
|
||||
.then(function (productIds) {
|
||||
return jsonrpc("/web/dataset/call_kw/product.product/write", {
|
||||
model: 'product.product',
|
||||
method: 'write',
|
||||
args: [productIds[0], {active: false}],
|
||||
kwargs: {},
|
||||
});
|
||||
})
|
||||
.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',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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))',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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: 'header#top:contains("Mitchell Admin")',
|
||||
run: function () {
|
||||
jsonrpc("/web/dataset/call_kw/product.product/search", {
|
||||
model: 'product.product',
|
||||
method: 'search',
|
||||
args: [[['name', '=', "Bottle"]]],
|
||||
kwargs: {},
|
||||
})
|
||||
.then(function (productIds) {
|
||||
return jsonrpc("/web/dataset/call_kw/product.product/write", {
|
||||
model: 'product.product',
|
||||
method: 'write',
|
||||
args: [productIds, {active: false}],
|
||||
kwargs: {},
|
||||
});
|
||||
})
|
||||
.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))',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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))',
|
||||
isCheck: true,
|
||||
},
|
||||
// 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)',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
content: "Go to '/shop",
|
||||
trigger: 'header#top 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])',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
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: 'header#top 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]))',
|
||||
isCheck: true,
|
||||
},
|
||||
]
|
||||
});
|
82
static/tests/tours/website_sale_wishlist_admin.js
Normal file
82
static/tests/tours/website_sale_wishlist_admin.js
Normal file
@ -0,0 +1,82 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import wTourUtils from "@website/js/tours/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
|
||||
},
|
||||
]
|
||||
);
|
1
tests/__init__.py
Normal file
1
tests/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from . import test_wishlist_process
|
92
tests/test_wishlist_process.py
Normal file
92
tests/test_wishlist_process.py
Normal file
@ -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")
|
28
views/snippets.xml
Normal file
28
views/snippets.xml
Normal file
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="snippet_options" inherit_id="website.snippet_options" name="Wishlist Snippet Options">
|
||||
<xpath expr="//we-button[hasclass('o_btn_show_empty_cart')]" position="after">
|
||||
<we-button title="Show/hide empty wishlist" class="fa fa-heart d-flex justify-content-center flex-grow-1"
|
||||
data-customize-website-views="website_sale_wishlist.header_hide_empty_wishlist_link|"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
</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>
|
246
views/website_sale_wishlist_template.xml
Normal file
246
views/website_sale_wishlist_template.xml
Normal file
@ -0,0 +1,246 @@
|
||||
<?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-set="in_wish" t-value="product in products_in_wishlist"/>
|
||||
<t t-set="product_variant_id" t-value="in_wish or 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"/>
|
||||
</button>
|
||||
</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-_badge_class="_badge_class"
|
||||
t-nocache-_icon_wrap_class="_icon_wrap_class"
|
||||
t-nocache-_text_class="_text_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}">
|
||||
<div t-attf-class="#{_icon_wrap_class}">
|
||||
<i t-if="_icon" class="fa fa-1x fa-heart fa-stack"/>
|
||||
<sup t-esc="wishcount" t-attf-class="my_wish_quantity o_animate_blink badge text-bg-primary #{_badge_class}"/>
|
||||
</div>
|
||||
<span t-if="_text" t-attf-class="#{_text_class}">Wishlist</span>
|
||||
</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_mobile" inherit_id="website_sale.template_header_mobile">
|
||||
<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="_link_class" t-value="'o_navlink_background_hover btn position-relative rounded-circle border-0 p-1 text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</t>
|
||||
</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="_link_class" t-value="'o_navlink_background btn position-relative rounded-circle p-1 text-center text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</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="_icon" t-value="True"/>
|
||||
<t t-set="_link_class" t-value="'o_navlink_background_hover btn position-relative rounded-pill p-1 text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_stretch" inherit_id="website_sale.template_header_stretch">
|
||||
<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="'border-start o_border_contrast'"/>
|
||||
<t t-set="_link_class" t-value="'o_navlink_background_hover btn position-relative d-flex align-items-center h-100 rounded-0 p-2 text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'rounded'"/>
|
||||
</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="_link_class" t-value="'o_navlink_background btn position-relative rounded-circle p-1 text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_search" inherit_id="website_sale.template_header_search">
|
||||
<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="'border-start o_border_contrast'"/>
|
||||
<t t-set="_link_class" t-value="'o_navlink_background_hover btn btn-sm d-flex align-items-center gap-1 h-100 rounded-0 p-2 text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'rounded'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_sales_one" inherit_id="website_sale.template_header_sales_one">
|
||||
<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="_link_class" t-value="'btn position-relative rounded-circle p-1 text-reset o_navlink_background'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_sales_two" inherit_id="website_sale.template_header_sales_two">
|
||||
<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="_icon_wrap_class" t-value="'position-relative me-2 rounded-circle border p-2 bg-o-color-3 o_border_contrast'"/>
|
||||
<t t-set="_link_class" t-value="'btn d-flex align-items-center fw-bold text-reset o_navlink_background_hover'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
<t t-set="_text_class" t-value="'small'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_sales_three" inherit_id="website_sale.template_header_sales_three">
|
||||
<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="'position-relative'"/>
|
||||
<t t-set="_link_class" t-value="'nav-link btn btn-sm d-flex flex-row-reverse align-items-center text-uppercase fw-bold'"/>
|
||||
<t t-set="_icon_wrap_class" t-value="'d-contains'"/>
|
||||
<t t-set="_badge_class" t-value="'top-0 d-block ms-2'"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="template_header_sales_four" inherit_id="website_sale.template_header_sales_four">
|
||||
<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="_link_class" t-value="'o_navlink_background_hover btn position-relative rounded-pill p-1 text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</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="_link_class" t-value="'o_navlink_background_hover btn position-relative p-1 rounded-circle text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</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="_icon" t-value="True"/>
|
||||
<t t-set="_link_class" t-value="'o_navlink_background btn position-relative rounded-circle p-1 text-center text-reset'"/>
|
||||
<t t-set="_badge_class" t-value="'position-absolute top-0 end-0 mt-n1 me-n1 rounded-pill'"/>
|
||||
</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="'product_tracking_info' in combination_info and json.dumps(combination_info['product_tracking_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-out="combination_info['price']"
|
||||
t-options="{'widget': 'monetary', 'display_currency': website.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…
x
Reference in New Issue
Block a user