mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 12:31:59 +02:00
19.0 vanilla
This commit is contained in:
parent
79f83631d5
commit
73afc09215
6267 changed files with 1534193 additions and 1130106 deletions
|
|
@ -14,39 +14,16 @@ pip install odoo-bringout-oca-ocb-website_sale_loyalty
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- website_sale
|
||||
- website_links
|
||||
- sale_loyalty
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Coupons, Promotions, Gift Card and Loyalty for eCommerce
|
||||
- **Version**: 1.0
|
||||
- **Category**: Website/Website
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `website_sale_loyalty`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/website_sale_loyalty
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -1,14 +1,16 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-website_sale_loyalty"
|
||||
version = "16.0.0"
|
||||
description = "Coupons, Promotions, Gift Card and Loyalty for eCommerce - Use coupon, promotion, gift cards and loyalty programs in your eCommerce store"
|
||||
description = "Coupons, Promotions, Gift Card and Loyalty for eCommerce -
|
||||
Use coupon, promotion, gift cards and loyalty programs in your eCommerce store
|
||||
"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-website_sale>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-website_links>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-sale_loyalty>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-website_sale>=19.0.0",
|
||||
"odoo-bringout-oca-ocb-website_links>=19.0.0",
|
||||
"odoo-bringout-oca-ocb-sale_loyalty>=19.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
|
|
@ -18,7 +20,7 @@ classifiers = [
|
|||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': "Coupons, Promotions, Gift Card and Loyalty for eCommerce",
|
||||
'summary': """Use coupon, promotion, gift cards and loyalty programs in your eCommerce store""",
|
||||
|
|
@ -13,12 +13,14 @@ Coupon & promotion programs can be edited in the Catalog menu of the Website app
|
|||
'depends': ['website_sale', 'website_links', 'sale_loyalty'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'wizard/sale_coupon_share_views.xml',
|
||||
|
||||
'views/loyalty_card_views.xml',
|
||||
'views/loyalty_program_views.xml',
|
||||
'views/website_sale_templates.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/snippets.xml',
|
||||
'views/website_sale_loyalty_menus.xml',
|
||||
|
||||
'wizard/coupon_share_views.xml',
|
||||
'wizard/res_config_settings_views.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/product_demo.xml',
|
||||
|
|
@ -26,12 +28,16 @@ Coupon & promotion programs can be edited in the Catalog menu of the Website app
|
|||
'auto_install': ['website_sale', 'sale_loyalty'],
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'website_sale_loyalty/static/src/js/coupon_toaster_widget.js',
|
||||
'website_sale_loyalty/static/src/js/website_sale_gift_card.js',
|
||||
'website_sale_loyalty/static/src/js/**/*',
|
||||
'website_sale_loyalty/static/src/interactions/**/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'website_sale_loyalty/static/tests/**/*',
|
||||
],
|
||||
'website.website_builder_assets': [
|
||||
'website_sale_loyalty/static/src/website_builder/**/*',
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import cart
|
||||
from . import delivery
|
||||
from . import main
|
||||
from . import payment
|
||||
from . import portal
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.http import request, route
|
||||
|
||||
from odoo.addons.website_sale.controllers.cart import Cart as WebsiteSaleCart
|
||||
|
||||
|
||||
class Cart(WebsiteSaleCart):
|
||||
|
||||
@route()
|
||||
def cart(self, **post):
|
||||
if order_sudo := request.cart:
|
||||
order_sudo._update_programs_and_rewards()
|
||||
order_sudo._auto_apply_rewards()
|
||||
return super().cart(**post)
|
||||
|
||||
@route('/wallet/top_up', type='http', auth='user', website=True, sitemap=False)
|
||||
def wallet_top_up(self, **kwargs):
|
||||
product = self.env['product.product'].browse(int(kwargs['trigger_product_id']))
|
||||
self.add_to_cart(product.product_tmpl_id.id, product.id, 1)
|
||||
return request.redirect('/shop/cart')
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from functools import partial
|
||||
|
||||
from odoo.http import request, route
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.website_sale.controllers.delivery import Delivery
|
||||
|
||||
|
||||
class WebsiteSaleLoyaltyDelivery(Delivery):
|
||||
|
||||
@route()
|
||||
def express_checkout_process_delivery_address(self, partial_delivery_address):
|
||||
"""Override of `website.sale` to include delivery discount if any."""
|
||||
res = super().express_checkout_process_delivery_address(partial_delivery_address)
|
||||
order_sudo = request.cart
|
||||
if free_shipping_lines := order_sudo._get_free_shipping_lines():
|
||||
res['delivery_discount_minor_amount'] = payment_utils.to_minor_currency_units(
|
||||
sum(free_shipping_lines.mapped('price_total')), order_sudo.currency_id
|
||||
)
|
||||
return res
|
||||
|
||||
def _order_summary_values(self, order, **post):
|
||||
to_html = partial(
|
||||
request.env['ir.qweb.field.monetary'].value_to_html,
|
||||
options={'display_currency': order.currency_id},
|
||||
)
|
||||
res = super()._order_summary_values(order, **post)
|
||||
free_shipping_lines = order._get_free_shipping_lines()
|
||||
if free_shipping_lines:
|
||||
shipping_discount = sum(free_shipping_lines.mapped('price_total'))
|
||||
res['amount_delivery_discounted'] = to_html(shipping_discount)
|
||||
res['delivery_discount_minor_amount'] = payment_utils.to_minor_currency_units(
|
||||
shipping_discount, order.currency_id
|
||||
)
|
||||
discount_lines = order.order_line.filtered(
|
||||
lambda line: line.reward_id.reward_type == 'discount'
|
||||
)
|
||||
groupable_lines = discount_lines.filtered(
|
||||
lambda line: line.reward_id.discount_mode == 'percent'
|
||||
)
|
||||
res['discount_reward_amounts'] = [
|
||||
to_html(sum(lines.mapped('price_subtotal')))
|
||||
for lines in groupable_lines.grouped('reward_id').values()
|
||||
] + [to_html(line.price_subtotal) for line in discount_lines - groupable_lines]
|
||||
return res
|
||||
|
|
@ -1,64 +1,41 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import http, _
|
||||
from odoo.addons.website_sale.controllers import main
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
from odoo.http import request
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from werkzeug.urls import url_encode, url_parse
|
||||
|
||||
from odoo import _
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.http import request, route
|
||||
|
||||
from odoo.addons.website_sale.controllers import main
|
||||
|
||||
|
||||
class WebsiteSale(main.WebsiteSale):
|
||||
|
||||
@http.route()
|
||||
def pricelist(self, promo, **post):
|
||||
order = request.website.sale_get_order()
|
||||
coupon_status = order._try_apply_code(promo)
|
||||
@route()
|
||||
def pricelist(self, promo, reward_id=None, **post):
|
||||
if not (order_sudo := request.cart):
|
||||
return request.redirect('/shop')
|
||||
coupon_status = order_sudo._try_apply_code(promo)
|
||||
if coupon_status.get('not_found'):
|
||||
return super(WebsiteSale, self).pricelist(promo, **post)
|
||||
return super().pricelist(promo, **post)
|
||||
elif coupon_status.get('error'):
|
||||
request.session['error_promo_code'] = coupon_status['error']
|
||||
elif 'error' not in coupon_status:
|
||||
reward_successfully_applied = True
|
||||
if len(coupon_status) == 1:
|
||||
coupon, rewards = next(iter(coupon_status.items()))
|
||||
if len(rewards) == 1 and not rewards.multi_product:
|
||||
reward_successfully_applied = self._apply_reward(order, rewards, coupon)
|
||||
if len(rewards) == 1:
|
||||
reward = rewards
|
||||
else:
|
||||
reward = reward_id in rewards.ids and rewards.browse(reward_id)
|
||||
if reward and (not reward.multi_product or request.env.context.get('product_id')):
|
||||
reward_successfully_applied = self._apply_reward(order_sudo, reward, coupon)
|
||||
|
||||
if reward_successfully_applied:
|
||||
request.session['successful_code'] = promo
|
||||
return request.redirect(post.get('r', '/shop/cart'))
|
||||
|
||||
@http.route()
|
||||
def shop_payment(self, **post):
|
||||
order = request.website.sale_get_order()
|
||||
if order:
|
||||
order._update_programs_and_rewards()
|
||||
order._auto_apply_rewards()
|
||||
return super(WebsiteSale, self).shop_payment(**post)
|
||||
|
||||
@http.route(['/shop/cart'], type='http', auth="public", website=True)
|
||||
def cart(self, **post):
|
||||
order = request.website.sale_get_order()
|
||||
if order and order.state != 'draft':
|
||||
request.session['sale_order_id'] = None
|
||||
order = request.website.sale_get_order()
|
||||
if order:
|
||||
order._update_programs_and_rewards()
|
||||
order._auto_apply_rewards()
|
||||
|
||||
res = super().cart(**post)
|
||||
|
||||
# TODO in master: remove and pass delete=True to the methods fetching the error/success
|
||||
# messages in _get_website_sale_extra_values
|
||||
# clean session messages after displaying them
|
||||
if request.session.get('error_promo_code'):
|
||||
request.session.pop('error_promo_code')
|
||||
if request.session.get('successful_code'):
|
||||
request.session.pop('successful_code')
|
||||
|
||||
return res
|
||||
|
||||
@http.route(['/coupon/<string:code>'], type='http', auth='public', website=True, sitemap=False)
|
||||
@route(['/coupon/<string:code>'], type='http', auth='public', website=True, sitemap=False)
|
||||
def activate_coupon(self, code, r='/shop', **kw):
|
||||
url_parts = url_parse(r)
|
||||
url_query = url_parts.decode_query()
|
||||
|
|
@ -67,9 +44,8 @@ class WebsiteSale(main.WebsiteSale):
|
|||
code = code.strip()
|
||||
|
||||
request.session['pending_coupon_code'] = code
|
||||
order = request.website.sale_get_order()
|
||||
if order:
|
||||
result = order._try_pending_coupon()
|
||||
if order_sudo := request.cart:
|
||||
result = order_sudo._try_pending_coupon()
|
||||
if isinstance(result, dict) and 'error' in result:
|
||||
url_query['coupon_error'] = result['error']
|
||||
else:
|
||||
|
|
@ -80,27 +56,41 @@ class WebsiteSale(main.WebsiteSale):
|
|||
redirect = url_parts.replace(query=url_encode(url_query))
|
||||
return request.redirect(redirect.to_url())
|
||||
|
||||
@http.route(['/shop/claimreward'], type='http', auth='public', website=True, sitemap=False)
|
||||
def claim_reward(self, reward, **post):
|
||||
order = request.website.sale_get_order()
|
||||
coupon_id = False
|
||||
try:
|
||||
reward_id = request.env['loyalty.reward'].sudo().browse(int(reward))
|
||||
except ValueError:
|
||||
reward_id = request.env['loyalty.reward'].sudo()
|
||||
claimable_rewards = order._get_claimable_rewards()
|
||||
for coupon, rewards in claimable_rewards.items():
|
||||
if reward_id in rewards:
|
||||
coupon_id = coupon
|
||||
@route('/shop/claimreward', type='http', auth='public', website=True, sitemap=False)
|
||||
def claim_reward(self, reward_id, code=None, **post):
|
||||
redirect = post.get('r', '/shop/cart')
|
||||
if not coupon_id or not reward_id.exists():
|
||||
if not (order_sudo := request.cart):
|
||||
return request.redirect(redirect)
|
||||
if reward_id.multi_product and 'product_id' in post:
|
||||
|
||||
try:
|
||||
reward_id = int(reward_id)
|
||||
except ValueError:
|
||||
reward_id = None
|
||||
|
||||
reward_sudo = request.env['loyalty.reward'].sudo().browse(reward_id).exists()
|
||||
if not reward_sudo:
|
||||
return request.redirect(redirect)
|
||||
|
||||
if reward_sudo.multi_product and 'product_id' in post:
|
||||
request.update_context(product_id=int(post['product_id']))
|
||||
else:
|
||||
request.redirect(redirect)
|
||||
|
||||
self._apply_reward(order, reward_id, coupon_id)
|
||||
program_sudo = reward_sudo.program_id
|
||||
claimable_rewards = order_sudo._get_claimable_and_showable_rewards()
|
||||
coupon = request.env['loyalty.card']
|
||||
for coupon_, rewards in claimable_rewards.items():
|
||||
if reward_sudo in rewards:
|
||||
coupon = coupon_
|
||||
if code == coupon.code and (
|
||||
(program_sudo.trigger == 'with_code' and program_sudo.program_type != 'promo_code')
|
||||
or (program_sudo.trigger == 'auto'
|
||||
and program_sudo.applies_on == 'future'
|
||||
and program_sudo.program_type not in ('ewallet', 'loyalty'))
|
||||
):
|
||||
return self.pricelist(code, reward_id=reward_id)
|
||||
if coupon:
|
||||
self._apply_reward(order_sudo, reward_sudo, coupon)
|
||||
return request.redirect(redirect)
|
||||
|
||||
def _apply_reward(self, order, reward, coupon):
|
||||
|
|
@ -119,35 +109,13 @@ class WebsiteSale(main.WebsiteSale):
|
|||
if 'error' in reward_status:
|
||||
request.session['error_promo_code'] = reward_status['error']
|
||||
return False
|
||||
order._update_programs_and_rewards()
|
||||
if order.carrier_id.free_over and not reward.program_id.is_payment_program:
|
||||
# update shiping cost if it's `free_over` and reward isn't eWallet or gift card
|
||||
# will call `_update_programs_and_rewards` again, updating applied eWallet/gift cards
|
||||
res = order.carrier_id.rate_shipment(order)
|
||||
if res.get('success'):
|
||||
order.set_delivery_line(order.carrier_id, res['price'])
|
||||
else:
|
||||
order._remove_delivery_line()
|
||||
return True
|
||||
|
||||
@http.route()
|
||||
def cart_update_json(self, *args, set_qty=None, **kwargs):
|
||||
# When a reward line is deleted we remove it from the auto claimable rewards
|
||||
if set_qty == 0:
|
||||
request.update_context(website_sale_loyalty_delete=True)
|
||||
# We need to update the website since `get_sale_order` is called on the website
|
||||
# and does not follow the request's context
|
||||
request.website = request.website.with_context(website_sale_loyalty_delete=True)
|
||||
return super().cart_update_json(*args, set_qty=set_qty, **kwargs)
|
||||
|
||||
|
||||
class PaymentPortal(main.PaymentPortal):
|
||||
|
||||
def _validate_transaction_for_order(self, transaction, sale_order_id):
|
||||
"""Update programs & rewards before finalizing transaction.
|
||||
|
||||
:param payment.transaction transaction: The payment transaction
|
||||
:param int order_id: The id of the sale order to pay
|
||||
:raise: ValidationError if the order amount changed after updating rewards
|
||||
"""
|
||||
super()._validate_transaction_for_order(transaction, sale_order_id)
|
||||
order_sudo = request.env['sale.order'].sudo().browse(sale_order_id)
|
||||
if order_sudo.exists():
|
||||
initial_amount = order_sudo.amount_total
|
||||
order_sudo._update_programs_and_rewards()
|
||||
order_sudo.validate_taxes_on_sales_order() # re-applies taxcloud taxes if necessary
|
||||
if order_sudo.currency_id.compare_amounts(initial_amount, order_sudo.amount_total):
|
||||
raise ValidationError(
|
||||
_("Cannot process payment: applied reward was changed or has expired.")
|
||||
)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
from odoo.addons.website_sale.controllers import payment
|
||||
|
||||
|
||||
class PaymentPortal(payment.PaymentPortal):
|
||||
|
||||
def _validate_transaction_for_order(self, transaction, sale_order):
|
||||
"""Update programs & rewards before finalizing transaction.
|
||||
|
||||
:param payment.transaction transaction: The payment transaction
|
||||
:param int order_id: The id of the sale order to pay
|
||||
:raise: ValidationError if the order amount changed after updating rewards
|
||||
"""
|
||||
super()._validate_transaction_for_order(transaction, sale_order)
|
||||
if sale_order.exists():
|
||||
initial_amount = sale_order.amount_total
|
||||
sale_order._update_programs_and_rewards()
|
||||
if sale_order.currency_id.compare_amounts(sale_order.amount_total, initial_amount):
|
||||
raise ValidationError(
|
||||
_(
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
)
|
||||
)
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.http import request, route
|
||||
from odoo.tools.misc import format_amount
|
||||
|
||||
from odoo.addons.loyalty.controllers import portal as loyalty_portal
|
||||
|
||||
|
||||
class CustomerPortalLoyalty(loyalty_portal.CustomerPortalLoyalty):
|
||||
|
||||
@route()
|
||||
def portal_get_card_history_values(self, card_id):
|
||||
"""Add published trigger products for the loyalty program."""
|
||||
res = super().portal_get_card_history_values(card_id)
|
||||
program_sudo = request.env['loyalty.program'].sudo().search([
|
||||
('coupon_ids', '=', int(card_id)),
|
||||
])
|
||||
if not program_sudo:
|
||||
return res
|
||||
|
||||
currency = request.env.company.currency_id
|
||||
res['program']['trigger_products'] = [{
|
||||
'id': product.id, 'total_price': format_amount(self.env, product.lst_price, currency)
|
||||
} for product in program_sudo.trigger_product_ids if product.website_published]
|
||||
return res
|
||||
|
|
@ -1,82 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Niyas Raphy, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2025\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:45+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/ar/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "الكوبون مطلوب لبرامج الكوبونات. "
|
||||
msgstr "الكوبون مطلوب لبرامج الكوبونات."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "تم العثور على كوبون له نفس الكود. "
|
||||
msgstr "تم العثور على كوبون له نفس الكود."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "كافة المواقع الإلكترونية "
|
||||
msgstr "كافة المواقع الإلكترونية"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "متاح على الموقع الإلكتروني "
|
||||
msgstr "متاح على الموقع الإلكتروني"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"لا يمكن معالجة الدفع: لقد تم تغيير المكافأة المطبقة أو انتهت صلاحيتها. "
|
||||
"لا يمكن معالجة الدفع: لقد تم تغيير المكافأة المطبقة أو انتهت صلاحيتها. \n"
|
||||
"يُرجى تحديث الصفحة وإعادة المحاولة من جديد."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "المطالبة"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "التكاليف"
|
||||
msgid "Code:"
|
||||
msgstr "الكود:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "تعذر تطبيق الكود الترويجي: "
|
||||
msgstr "تعذر تطبيق الكود الترويجي:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "كوبون"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "خيارات قصاصات الكوبونات"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "الكوبونات -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr "قم بإنشاء روابط تقوم بتطبيق الكوبونات وإعادة توجيه صفحة محددة "
|
||||
msgstr "قم بإنشاء روابط تقوم بتطبيق الكوبونات وإعادة توجيه صفحة محددة"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -91,17 +103,17 @@ msgstr "أنشئ في"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "تم تعطيل المكافآت التلقائية "
|
||||
msgstr "تم تعطيل المكافآت التلقائية"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "الخصم والولاء "
|
||||
msgstr "الخصم والولاء"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "كود خصم أو بطاقة هدايا "
|
||||
msgstr "كود خصم أو بطاقة هدايا"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -111,47 +123,59 @@ msgstr "الخصم:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "المبلغ المخفض "
|
||||
msgstr "المبلغ المخفض"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "منتهي "
|
||||
msgstr "منتهي"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "تاريخ انتهاء الصلاحية:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "إنشاء رابط قصير "
|
||||
msgstr "إنشاء رابط قصير"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "بطاقة هدايا أو كود خصم... "
|
||||
msgstr "بطاقة هدايا أو كود خصم..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "بطاقات الهدايا والمحفظة الإلكترونية "
|
||||
msgstr "بطاقات الهدايا والمحفظة الإلكترونية"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "الكود الترويجي غير صالح أو انتهت صلاحيته. "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
msgstr "الكود الترويجي غير صالح أو انتهت صلاحيته."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
|
|
@ -166,12 +190,12 @@ msgstr "آخر تحديث في"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "الولاء "
|
||||
msgstr "الولاء"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "كوبون الولاء "
|
||||
msgstr "كوبون الولاء"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
|
|
@ -189,19 +213,19 @@ msgid "Loyalty Rule"
|
|||
msgstr "قاعدة الولاء"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "الدفع باستخدام المحفظة الإلكترونية "
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "متغير المنتج"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "البرنامج "
|
||||
msgstr "البرنامج"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "الموقع الإلكتروني للبرنامج "
|
||||
msgstr "الموقع الإلكتروني للبرنامج"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
|
|
@ -210,10 +234,9 @@ msgstr "الكود الترويجي"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "قم بالتزويد بكوبون أو برنامج. "
|
||||
msgstr "قم بالتزويد بكوبون أو برنامج."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
|
|
@ -224,8 +247,8 @@ msgstr "إعادة توجيه"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "قصر إمكانية النشر على هذا الموقع الإلكتروني. "
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "التقييد لموقع إلكتروني محدد"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -239,14 +262,18 @@ msgstr "بند أمر المبيعات"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "مشاركة"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "مشاركة %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -255,42 +282,63 @@ msgstr "مشاركة الرابط"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "مشاركة بطاقة الولاء "
|
||||
msgstr "مشاركة بطاقة الولاء"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "إظهار الخصم في الناتج الفرعي "
|
||||
msgstr "إظهار الخصم في الناتج الفرعي"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "عرض تحذيرات المنتجات التي لم يتم نشرها"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "سيتم تطبيق الكوبون تلقائياً عندما تقوم بإضافة شيء إلى عربة تسوقك. "
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "سيتم تطبيق الكوبون تلقائياً عندما تقوم بإضافة شيء إلى عربة تسوقك."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "لقد تم تطبيق الكود الترويجي التالي على طلبك: "
|
||||
msgstr "لقد تم تطبيق الكود الترويجي التالي على طلبك:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "يجب أن يكون الكود الترويجي فريداً. "
|
||||
msgstr "يجب أن يكون الكود الترويجي فريداً."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
"يجب أن يكون هذا الموقع الإلكتروني المشترَك مقابلاً للموقع الإلكتروني "
|
||||
"للبرنامج. "
|
||||
"يجب أن يكون هذا الموقع الإلكتروني المشترَك مقابلاً للموقع الإلكتروني للبرنامج."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"حتى تتمكن من تعبئة المحفظة الإلكترونية من البوابة، يجب نشر منتجات \n"
|
||||
" المحفظة الإلكترونية."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "إضافة رصيد"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "استخدم"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -304,22 +352,14 @@ msgstr "الموقع الإلكتروني"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"يمكنك مشاركة هذا العرض التويجي مع عملائك.\n"
|
||||
" سيتم تطبيقه عند الدفع والخروج عندما يستخدم العميل هذ االرابط. "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "لديك"
|
||||
" سيتم تطبيقه عند الدفع والخروج عندما يستخدم "
|
||||
"العميل هذ االرابط."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "لقد قمت بتطبيق الكود التالي بنجاح: "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "في محفظتك الإلكترونية "
|
||||
msgstr "لقد قمت بتطبيق الكود التالي بنجاح:"
|
||||
|
|
|
|||
|
|
@ -1,37 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2024\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -47,20 +40,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Dəyərlər"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -72,6 +68,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -80,12 +87,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -105,7 +112,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Endirim:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -114,13 +121,24 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hazırdır"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -139,28 +157,29 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -175,7 +194,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Loyallıq Proqramı"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -188,8 +207,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -205,51 +224,54 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promo kod"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Yönləndir"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Bu veb saytda dərc etməni məhdudlaşdırın."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Satış Sifarişi"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Satış Sifarişi Sətri"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Paylaşın"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Keçidi paylaşın"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -257,17 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -278,43 +304,50 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Veb sayt"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Kreditiniz var"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,311 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Вэб-сайт"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,109 +1,108 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Igor Sheludko <igor.sheludko@gmail.com>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# Martin Dinovski, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Dinovski, 2025\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "За програмите с купони е необходим купон."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Намерен е купон със същия код."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Всички уебсайтове"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Достъпно на уебсайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Не може да се обработи плащането: приложената награда е променена или е "
|
||||
"изтекла."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Вземане"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Разходи"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Промокодът не може да бъде приложен:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Купон"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Създаване на връзки, които прилагат купон и пренасочват към конкретна "
|
||||
"страница."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Деактивирани автоматични награди."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Отстъпка & лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
|
|
@ -113,97 +112,109 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Отстъпка:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Сума на отстъпката."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Извършен"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Генериране на кратка връзка."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Карта за подарък или код за отстъпка..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Карти за подарък и електронен портфейл."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Невалиден или изтекъл промо код."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Купони за лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Програма за лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Програма за лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Правило за лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Плати с електронен портфейл."
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Програма"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
|
|
@ -213,90 +224,112 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Промо код"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Предоставете или купон, или програма."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Пренасочен"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Поръчка"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Ред на поръчка за продажби"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Споделете"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Споделете линк"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Сподели карта за лоялност"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Показване на отстъпката в междинната сума"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Купонът ще бъде приложен автоматично, когато добавите нещо в количката си."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Следния промокод беше приложен на вашата поръчка:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Промокодът трябва да е уникален."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Споделеният уебсайт трябва да кореспондира с уебсайтът на програмата."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -304,26 +337,17 @@ msgstr "Споделеният уебсайт трябва да кореспон
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Уебсайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Вие имате"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Успешно сте приложили следният код:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "В вашият електронен портфейл"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,353 +1,355 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:28+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \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"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon je potreban za kuponske programe."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Pronađen je kupon s istim kodom."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Sve web stranice"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Dostupno na web stranici"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Ne mogu obraditi plaćanje: primijenjena nagrada je promijenjena ili je "
|
||||
"istekla."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Zahtjev"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Troškovi"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Nije moguće primijeniti promotivni kôd:"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Kreirajte linkove koji primjenjuju kupon i preusmjeravaju na specifičnu "
|
||||
"stranicu"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Onemogućene automatske nagrade"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Kuponi i Vjernost"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Kod za popust ili darovna kartica."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Popust:"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Iznos s popustom"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Riješeno"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Generiraj kratki link"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Darovna kartica ili kod za popust"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Poklon bon & eNovčanik"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Nevažeći ili istekao promotivni kôd."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lojalnost"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kupon lojalnosti"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program lojalnosti"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Programi odanosti"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Pravila odanosti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Platite sa eNovčanikom"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Web stranica programa"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promo kod"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Navedite ili kupon ili program."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmjeri"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Ograniči objavljivanje na ovu web stranicu."
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajnog naloga"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
msgid "Share"
|
||||
msgstr "Podjeli"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Podijeli link"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Podijelite karticu vjernosti"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Prikaži popust u međuzbroju"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Kupon će se automatski primijeniti kada nešto dodate u svoju košaricu."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Sljedeći promotivni kod je primijenjen na vašu narudžbu:"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Promo kod mora biti jedinstven."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Dijeljanja web stranica treba da odgovara web stranici programa."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Možete podijeliti ovu promociju sa vašim kupcima.\n"
|
||||
" Bit će primijenjena pri završetku kupovine kada kupac koristi ovaj link."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Imaš"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Uspješno ste primijenili sljedeći kôd:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "u vašem enovčaniku"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,41 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2022
|
||||
# M Palau <mpalau@tda.ad>, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# marcescu, 2022
|
||||
# jabiri7, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-22 13:39+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/ca/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Es necessita un cupó per als programes de cupons."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "S'ha trobat un cupó amb el mateix codi."
|
||||
|
||||
|
|
@ -51,20 +44,26 @@ msgstr "Disponible al lloc web"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"No és possible processar el pagament: la recompensa aplicada ha estat "
|
||||
"modificada o ha caducat.\n"
|
||||
"Si us plau, actualitza la pàgina i torna-ho a intentar."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Reclama"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Costos"
|
||||
msgid "Code:"
|
||||
msgstr "Codi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -76,6 +75,17 @@ msgstr "No s'ha pogut aplicar el codi de promoció:"
|
|||
msgid "Coupon"
|
||||
msgstr "Cupó"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -100,12 +110,12 @@ msgstr "Reenviament automàtic desactivat"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Lleialtat del descompte"
|
||||
msgstr "Descomptes i Fidelització"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Codi de descompte o targeta regal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -119,14 +129,25 @@ msgstr "Quantitat descomptada"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Fet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Data de venciment:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -135,7 +156,7 @@ msgstr "Genera un enllaç curt"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Gift card o codi de descompte..."
|
||||
msgstr "Targeta regal codi de descompte..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
|
|
@ -144,6 +165,12 @@ msgstr "Gift Cards eWallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -152,11 +179,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Codi promocional invàlid o caducat."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -170,32 +192,32 @@ msgstr "Última actualització el"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lleialtat"
|
||||
msgstr "Fidelització"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Cupó lleial"
|
||||
msgstr "Cupó de fidelització"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programa de fidelitat "
|
||||
msgstr "Programa de fidelitat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Programes de fidelitat "
|
||||
msgstr "Programes de fidelitat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regles de fidelitat "
|
||||
msgstr "Regles de fidelitat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Paga amb eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -213,8 +235,8 @@ msgid "Promo Code"
|
|||
msgstr "Codi de promoció"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Proporcioneu un cupó o un programa."
|
||||
|
||||
|
|
@ -227,13 +249,13 @@ msgstr "Redirigir"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Restringir les publicacions en aquest portal web."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restringir a un lloc web específic."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Comanda de venda"
|
||||
msgstr "Comanda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
|
|
@ -241,14 +263,19 @@ msgid "Sales Order Line"
|
|||
msgstr "Línia comanda de venda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Compartir"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -257,39 +284,62 @@ msgstr "Compartir enllaç"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Comparteix la targeta de lleialtat"
|
||||
msgstr "Comparteix la targeta de fidelització"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostra el descompte en el subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"El cupó s'aplicarà automàticament quan afegiu alguna cosa al vostre carro."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "El següent codi de promoció es va aplicar en la seva comanda:"
|
||||
msgstr "El següent codi promocional es va aplicar en la seva comanda:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "El codi promocional ha de ser únic."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "El sitio web compartido debe corresponder al sitio web del programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Utilitza"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -302,22 +352,14 @@ msgstr "Lloc web"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Pots compartir aquesta promoció amb els teus clients.\n"
|
||||
" S'aplicarà a la caixa quan el client utilitzi aquest enllaç."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Té"
|
||||
" S'aplicarà a la caixa quan el client utilitzi "
|
||||
"aquest enllaç."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Heu aplicat correctament el codi següent:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "al teu ewallet"
|
||||
|
|
|
|||
|
|
@ -1,45 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Helemik Nemec <nemec@helemik.cz>, 2022
|
||||
# Damian Brencic <brencicdamian12313@gmail.com>, 2022
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Jakub Lohnisky <jakub@lepremier.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Jakub Smolka, 2024
|
||||
# Tereza Mokrá, 2024
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:53+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/cs/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Byl nalezen kupón se stejným kódem."
|
||||
|
||||
|
|
@ -55,20 +44,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Náklady"
|
||||
msgid "Code:"
|
||||
msgstr "Kód:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -80,6 +72,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr "Kupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -88,12 +91,12 @@ msgstr "Vytvoří odkazy, které uplatní kupón a přesměrují na konkrétní
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
msgstr "Vytvořeno uživatelem"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
msgstr "Vytvořeno dne"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -122,14 +125,25 @@ msgstr "Zvýhodněná částka"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hotovo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Datum vypršení platnosti:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -147,6 +161,12 @@ msgstr "Poukazy a digitální peněženky"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -155,20 +175,15 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Neplatný nebo expirovaný promo kód."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
msgstr "Naposledy upraveno uživatelem"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -193,12 +208,12 @@ msgstr "Věrnostní programy"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Pravidla věrnostního programu"
|
||||
msgstr "Věrnostní pravidlo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktová varianta"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -217,8 +232,7 @@ msgstr "Promo kód"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -231,8 +245,8 @@ msgstr "Přesměrování"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Omezit publikování na této webstránce."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Omezit na konkrétní webovou stránku."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -242,18 +256,22 @@ msgstr "Prodejní objednávka"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Řádek zakázky"
|
||||
msgstr "Položka prodejní objednávky"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Sdílet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -265,18 +283,22 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Kupón se automaticky uplatní, když přidáte něco do košíku."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -286,43 +308,50 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Promo kód musí být jedinečný."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Použijte"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
msgstr "Webová stránka"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Máte"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,39 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Mads Søndergaard, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:09+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/da/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "En kupon er nødvendig for kuponprogrammer."
|
||||
msgstr "En rabatkupon er påkrævet for kuponprogrammer."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Der blev fundet en kupon med samme kode."
|
||||
msgstr "Der blev fundet en rabankupon med samme kode."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -47,20 +43,26 @@ msgstr "Tilgængelig på hjemmesiden"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Betalingen kunne ikke gennemføres: Den valgte belønning er enten ændret "
|
||||
"eller udløbet.\n"
|
||||
"Genindlæs venligst siden, og prøv igen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Påstand"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Omkostninger"
|
||||
msgid "Code:"
|
||||
msgstr "Kode:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -70,12 +72,24 @@ msgstr "Kunne ikke anvende kampagnekoden:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
msgstr "Rabatkupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Valgmuligheder for rabatkupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Rabatkuponer –"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr "Opret links, der anvender en kupon og omdirigerer til en bestemt side"
|
||||
msgstr ""
|
||||
"Opret links, der anvender en rabatkupon og omdirigerer til en bestemt side"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -90,17 +104,17 @@ msgstr "Oprettet den"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Deaktiveret automatiske belønninger"
|
||||
msgstr "Deaktiverede automatiske belønninger"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Rabat & Loyalitet"
|
||||
msgstr "Rabat og loyalitet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
msgstr "Rabatkode eller gavekort"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -110,10 +124,16 @@ msgstr "Rabat:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Rabat"
|
||||
msgstr "Rabatbeløb"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
|
|
@ -122,35 +142,41 @@ msgstr "Vis navn"
|
|||
msgid "Done"
|
||||
msgstr "Udført"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Udløbsdato:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Generer kort link"
|
||||
msgstr "Generér kort link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Gavekort eller rabatkode"
|
||||
msgstr "Gavekort eller rabatkode ..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Gavekort og eWallet"
|
||||
msgstr "Gavekort og digital tegnebog"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Ugyldig eller udløbet kampagne kode."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
msgstr "Ugyldig eller udløbet kampagnekode."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
|
|
@ -170,7 +196,7 @@ msgstr "Loyalitet"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Loyalitetskupon"
|
||||
msgstr "Loyalitetsprogamkupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
|
|
@ -185,12 +211,12 @@ msgstr "Loyalitetsprogrammer"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Loyalitet regel"
|
||||
msgstr "Loyalitetsregel"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Betal med eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -200,7 +226,7 @@ msgstr "Program"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Program hjemmeside"
|
||||
msgstr "Programhjemmeside"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
|
|
@ -208,22 +234,22 @@ msgid "Promo Code"
|
|||
msgstr "Kampagnekode"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Giv enten en kupon eller et program."
|
||||
msgstr "Tilbyd enten en rabatkupon eller et loyalitetsprogram."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Redirect"
|
||||
msgstr "Omdirigér"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Begræns udgivelse til denne hjemmeside."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Begræns til en bestemt hjemmeside."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -236,14 +262,19 @@ msgid "Sales Order Line"
|
|||
msgstr "Salgsordrelinje"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Del"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Del %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -255,18 +286,24 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Del loyalitetskort"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Vis rabat i subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Vis advarsel for ikke offentliggjort produkt"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Kuponen bliver automatisk tilføjet, når til lægger noget i din indkøbskurv."
|
||||
"Rabatkuponen bliver automatisk tilføjet, når til lægger noget i din "
|
||||
"indkøbskurv."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -274,17 +311,38 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr "Følgende kampagnekode blev anvendt på din ordre:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Kampagnekoden skal være unik."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Den delte hjemmeside skal svare til programmets hjemmeside."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"For at kunne sætte penge ind på den digitale tegnebog fra portalen, skal "
|
||||
"produkter til den digitale tegnebog være\n"
|
||||
" offentliggjorte."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Sæt penge ind"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Brug"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -297,22 +355,13 @@ msgstr "Hjemmeside"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Du kan dele denne kampagne med dine kunder.\n"
|
||||
"Det vil blive anvendt ved kassen, når kunden bruger dette link."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Du har"
|
||||
"Du kan dele denne kampagnekode med dine kunder.\n"
|
||||
"Den anvendes automatisk ved kassen, når kunden benytter dette link."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Du har anvendt følgende kode:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "i din eWallet"
|
||||
|
|
|
|||
|
|
@ -1,37 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Malaz Siddig Elsayed Abuidris (msea)" <msea@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-02-13 09:20+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/de/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Für Gutscheinprogramme wird ein Gutschein benötigt."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Es wurde ein Gutschein mit demselben Code gefunden."
|
||||
|
||||
|
|
@ -47,22 +45,26 @@ msgstr "Auf der Website verfügbar"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Zahlung kann nicht verarbeitet werden: Angewandte Belohnung wurde geändert "
|
||||
"oder ist abgelaufen."
|
||||
"oder ist abgelaufen.\n"
|
||||
"Aktualisieren Sie die Seite oder versuchen Sie es erneut."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Einfordern"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kosten"
|
||||
msgid "Code:"
|
||||
msgstr "Code:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -74,6 +76,17 @@ msgstr "Der Aktionscode konnte nicht angewendet werden:"
|
|||
msgid "Coupon"
|
||||
msgstr "Gutschein"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opciones del snippet de cupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Gutscheine -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -118,6 +131,12 @@ msgstr "Rabattierter Betrag"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
|
|
@ -126,6 +145,11 @@ msgstr "Anzeigename"
|
|||
msgid "Done"
|
||||
msgstr "Erledigt"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Ablaufdatum:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -143,6 +167,12 @@ msgstr "Geschenkkarten & E-Geldbörse"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -151,11 +181,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Ungültiger oder abgelaufener Gutscheincode."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -192,9 +217,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Treueregel"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Mit E-Geldbörse bezahlen"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariante"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -213,8 +238,7 @@ msgstr "Aktionscode"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Bieten Sie entweder einen Gutschein oder ein Programm an."
|
||||
|
||||
|
|
@ -227,8 +251,8 @@ msgstr "Umleiten"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Beschränken Sie die Veröffentlichung auf dieser Website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Auf eine bestimmte Website beschränken."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -242,14 +266,18 @@ msgstr "Verkaufsauftragszeile"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "%s teilen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -261,20 +289,24 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Treuekarte teilen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Rabatt in Zwischensumme anzeigen"
|
||||
msgstr "Rabatt in der Zwischensumme anzeigen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Warnung für unveröffentlichte Produkt anzeigen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Der Gutschein wird automatisch angewendet, wenn Sie etwas in Ihren Warenkorb"
|
||||
" legen."
|
||||
"Der Gutschein wird automatisch angewendet, wenn Sie etwas in Ihren Warenkorb "
|
||||
"legen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -284,17 +316,36 @@ msgstr "Der folgende Aktionscode wurde auf Ihre Bestellung angewendet:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Der Aktionscode muss einzigartig sein."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Die geteilte Website sollte der Website des Programms entsprechen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Um die E-Geldbörse über das Portal aufzuladen, müssen Produkte für E-"
|
||||
"Geldbörsen\n"
|
||||
" veröffentlicht werden."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Guthaben aufladen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Verwenden Sie"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -307,22 +358,13 @@ msgstr "Website"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Sie können diese Aktion mit Ihren Kunden teilen.\n"
|
||||
"Sie wird an der Kasse angewendet, wenn der Kunde diesen Link verwendet."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Sie haben"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Sie haben den folgenden Code erfolgreich angewendet:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "in Ihrer E-Geldbörse"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-24 19:23+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -43,19 +43,22 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -68,6 +71,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -76,12 +90,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -101,7 +115,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr ""
|
||||
msgstr "Έκπτωση:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -110,12 +124,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Ολοκληρωμένη"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -135,28 +160,29 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
msgstr "Τελευταία Ενημέρωση από"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -171,12 +197,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
msgstr "Πρόγραμμα αφοσίωσης"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr ""
|
||||
msgstr "Προγράμματα αφοσίωσης"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
|
|
@ -184,8 +210,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -204,8 +230,8 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -218,32 +244,37 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
msgstr "Παραγγελία"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
msgstr "Γραμμή Παραγγελίας"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Κοινοποίηση"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
msgstr "Σύνδεσμος κοινής χρήσης"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -251,16 +282,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -269,43 +305,52 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Webtuiste"
|
||||
msgstr "Ιστότοπος"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,40 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# David Vidal <david.vidal@tecnativa.com>, 2023
|
||||
# Pedro M. Baeza <pedro.baeza@tecnativa.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-12 09:36+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/es/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Se necesita un cupón para los programas de cupones."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Se encontró un cupón con el mismo código."
|
||||
|
||||
|
|
@ -50,22 +44,26 @@ msgstr "Disponible en el sitio web"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"No se puede procesar el pago: la recompensa solicitada se ha modificado o ha"
|
||||
" caducado."
|
||||
"No se puede procesar el pago: la recompensa aplicada se ha modificado o ha "
|
||||
"caducado.\n"
|
||||
"Actualice la página e inténtelo de nuevo."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Reclamación"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Costes"
|
||||
msgid "Code:"
|
||||
msgstr "Código:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -77,6 +75,17 @@ msgstr "No se pudo aplicar el código promocional:"
|
|||
msgid "Coupon"
|
||||
msgstr "Cupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opciones del fragmento de cupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Cupones -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -106,7 +115,7 @@ msgstr "Descuento y fidelidad"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Código de descuento o tarjeta de regalo"
|
||||
msgstr "Código de descuento o tarjeta regalo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -120,14 +129,25 @@ msgstr "Cantidad descontada"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hecho"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Fecha de caducidad:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -136,7 +156,7 @@ msgstr "Generar un enlace corto"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Tarjeta de regalo o código de descuento..."
|
||||
msgstr "Tarjeta regalo o código de descuento..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
|
|
@ -145,6 +165,12 @@ msgstr "Tarjetas de regalo y monedero electrónico"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -153,11 +179,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Código de promoción no válido o caducado."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -194,9 +215,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Regla de fidelidad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Pagar con monedero electrónico"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de producto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -215,8 +236,7 @@ msgstr "Código promocional"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Proporcione un cupón o un programa."
|
||||
|
||||
|
|
@ -229,8 +249,8 @@ msgstr "Redireccionar"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Restringir publicar a este sitio web."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restringir a un sitio web específico."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -244,14 +264,18 @@ msgstr "Línea de pedido de venta"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Compartir"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Compartir %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -263,38 +287,61 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Compartir tarjeta de fidelidad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostrar descuento en el subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Mostrar advertencia de producto no publicado"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "El cupón se aplicará automáticamente cuando añada algo a su cesta."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Se ha aplicado el siguiente código promocional en su pedido:"
|
||||
msgstr "Se ha aplicado el siguiente código promocional a tu pedido:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "El código promocional debe ser único."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "El sitio web compartido debe corresponder al sitio web del programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Los productos de monedero electrónico deben estar publicados para poder "
|
||||
"recargar\n"
|
||||
" el monedero desde el portal."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Recargar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Uso"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -307,22 +354,14 @@ msgstr "Sitio web"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Puede compartir esta promoción con sus clientes.\n"
|
||||
" Se aplicará al momento de la compra cuando el cliente utilice este enlace."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Tiene"
|
||||
" Se aplicará al momento de la compra cuando el "
|
||||
"cliente utilice este enlace."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Ha aplicado satisfactoriamente el siguiente código:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "en su monedero electrónico"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Lucia Pacheco, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 06:27+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/website_sale_loyalty/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Se necesita un cupón para los programas de cupones."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Se encontró un cupón con el mismo código."
|
||||
|
||||
|
|
@ -48,22 +43,25 @@ msgstr "Disponible en el sitio web"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"No se puede procesar el pago: La recompensa solicitada fue modificada o "
|
||||
"venció."
|
||||
"No es posible procesar el pago: La recompensa aplicada cambió o venció.\n"
|
||||
"Actualice la página e inténtelo de nuevo."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Reclamación"
|
||||
msgstr "Reclamar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Costos"
|
||||
msgid "Code:"
|
||||
msgstr "Código:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +73,17 @@ msgstr "No se pudo aplicar el código promocional:"
|
|||
msgid "Coupon"
|
||||
msgstr "Cupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opciones del snippet de cupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Cupones -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -99,7 +108,7 @@ msgstr "Recompensas automáticas desactivadas"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Descuento y lealtad"
|
||||
msgstr "Descuentos y programas de lealtad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
|
|
@ -118,13 +127,24 @@ msgstr "Importe con descuento"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hecho"
|
||||
msgstr "Listo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Fecha de vencimiento:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -139,22 +159,23 @@ msgstr "Tarjeta de regalo o código de descuento..."
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Tarjetas de regalo y cartera electrónica"
|
||||
msgstr "Tarjetas de regalo y monedero electrónico"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Código de promoción no válido o expirado."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
msgstr "Código de promoción no válido o vencido."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
|
|
@ -192,9 +213,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Regla de lealtad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Pagar con monedero electrónico"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante del producto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -213,8 +234,7 @@ msgstr "Código promocional"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Proporcione un cupón o un programa."
|
||||
|
||||
|
|
@ -227,8 +247,8 @@ msgstr "Redireccionar"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Restringir publicaciones a este sitio web."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restringir a un sitio web específico."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -242,14 +262,18 @@ msgstr "Línea de la orden de venta"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Compartir"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Compartir %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -261,17 +285,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Compartir tarjeta de lealtad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostrar descuento en el subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Mostrar advertencia de producto sin publicar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"El cupón se aplicará de forma automática cuando agregue algo a su carrito."
|
||||
|
||||
|
|
@ -283,17 +311,36 @@ msgstr "Se aplicó el siguiente código promocional en su orden:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "El código promocional debe ser único."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "El sitio web compartido debe corresponder al sitio web del programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Los productos de monedero electrónico deben estar publicados para poder "
|
||||
"recargar\n"
|
||||
" el monedero desde el portal."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Recargar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Uso"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -306,22 +353,14 @@ msgstr "Sitio web"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Puede compartir esta promoción con sus clientes.\n"
|
||||
" Se aplicará en el pago cuando el cliente utilice este enlace."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Tiene"
|
||||
" Se aplicará en el pago cuando el cliente utilice "
|
||||
"este enlace."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Aplicó con éxito el siguiente código:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "en su cartera electrónica"
|
||||
|
|
@ -1,294 +1,335 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Piia Paurson <piia@avalah.ee>, 2022
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupong on vajalik kupongiprogrammide jaoks."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Leiti sama koodiga kupong."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Kõik veebilehed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Saadaval veebilehel"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Nõue"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kulud"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Sooduskoodi ei saanud rakendada:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Sooduskupong"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Looge lingid, kus saab rakendada kuponge ja mis suunavad ümber konkreetsele "
|
||||
"lehele. "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Automaatsed soodustused on keelatud"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Allahindlus ja lojaalsusprogramm"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Sooduskood või kinkekaart"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Allahindlus:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Soodushind"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Tehtud"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Loo lühike link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Kinkekaart või sooduskood..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Kinkekaardid ja eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Kehtetu või aegunud sooduskood."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr " Lojaalsusprogramm"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Lojaalsuskupong"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Lojaalsusprogramm"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Lojaalsusprogrammid"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Lojaalsusreegel"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Maksa eWallet'iga"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programm"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Veebilehe kampaania"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Sooduskood"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Esitage kupong või kampaaniaprogramm."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Suuna ümber"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Avalikustage ainult see veebileht"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Müügitellimus"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Müügitellimuse rida"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Jaga"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Jaga linki"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Jaga lojaalsuskaarti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Näita allahindlust vahesummas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "Kupong rakendatakse automaatselt, kui lisate midagi oma ostukorvi."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Teie tellimusele on rakendatud järgmine sooduskood:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Sooduskood peab olema unikaalne. "
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Jagatud veebisait peaks vastama programmi veebisaidile."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -296,28 +337,17 @@ msgstr "Jagatud veebisait peaks vastama programmi veebisaidile."
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Veebileht"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Võite seda kampaaniat oma klientidega jagada.\n"
|
||||
" Rakendatakse kassas, kui klient kasutab seda linki."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Teil on"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Olete edukalt rakendanud järgmise koodi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "enda eWallet'is"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,304 +1,335 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# odooers ir, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
# Naser mars, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Naser mars, 2025\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "یک کوپن برای برنامه های کوپن مورد نیاز است."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "یک کوپن با همین کد پیدا شد."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "همه سایت ها"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "موجود در وب سایت"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"پرداخت نمی تواند پردازش شود: پاداش اعمال شده تغییر کرده یا منقضی شده است."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "ادعا"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "هزینهها"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "نمی توان کد تبلیغاتی را اعمال کرد:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "کوپن"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"پیوندهایی ایجاد کنید که یک کوپن اعمال می کنند و به یک صفحه خاص هدایت می شوند"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "پاداشهای خودکار غیرفعال شده"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "تخفیف و وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "کد تخفیف یا کارت هدیه"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "تخفیف:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "مقدار تخفیف"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "انجام شده"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "ایجاد لینک کوتاه"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "کد تخفیف یا کارت هدیه..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "کارتهای هدیه و کیف پول الکترونیکی"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "کد تبلیغاتی نامعتبر یا منقضی شده است."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "کوپن وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "برنامه وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "برنامه های وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "قانون وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "پداخت با کیف الکترونیکی"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "برنامه"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "برنامه وبسایت"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "کد تبلیغاتی"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "یک کوپن یا یک برنامه ارائه دهید."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "تغییر مسیر"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "محدود کردن انتشار به این وبسایت."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "سفارش فروش"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "سطر سفارشفروش"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "اشتراکگذاری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "اشتراک لینک"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "اشتراک کارت وفاداری"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "تخفیف را در جمع جزء نشان بده"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"هنگامی که چیزی را در سبد خرید خود اضافه می کنید، کوپن به طور خودکار اعمال می"
|
||||
" شود.هنگامی که چیزی را در سبد خرید خود اضافه می کنید، کوپن به طور خودکار "
|
||||
"اعمال می شود."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
"کد تبلیغاتی زیر برای سفارش شما اعمال شد: کد تبلیغاتی زیر روی سفارش شما اعمال"
|
||||
" شد:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "کد تبلیغاتی باید منحصر به فرد باشد."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "وب سایت مشترک باید با وب سایت برنامه مطابقت داشته باشد."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -306,28 +337,17 @@ msgstr "وب سایت مشترک باید با وب سایت برنامه مطا
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "تارنما"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"شما می توانید این تبلیغات را با مشتریان خود به اشتراک بگذارید.\n"
|
||||
" هنگامی که مشتری از این پیوند استفاده می کند، هنگام پرداخت اعمال می شود."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "شما دارید"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "کد زیر را با موفقیت اعمال کردید:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "در کیف پول الکترونیکی شما"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,43 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Svante Suominen <svante.suominen@web-veistamo.fi>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tommi Rintala <tommi.rintala@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Saara Hakanen <sahak@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2025\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-02-17 12:43+0000\n"
|
||||
"Last-Translator: Saara Hakanen <sahak@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/fi/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kuponki tarvitaan kuponkiohjelmia varten."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Samaa koodia sisältävä kuponki löytyi."
|
||||
msgstr "Kuponki, jossa on sama koodi, löytyi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -47,40 +40,56 @@ msgstr "Kaikki verkkosivut"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Saatavilla verkkosivustolla"
|
||||
msgstr "Saatavilla verkkosivulla"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Maksua ei voida käsitellä: haettu palkkio on muuttunut tai vanhentunut."
|
||||
"Maksua ei voida käsitellä: käytettyä palkintoa muutettiin tai se on "
|
||||
"vanhentunut.\n"
|
||||
"Päivitä sivu ja yritä uudelleen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Lunasta"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kulut"
|
||||
msgid "Code:"
|
||||
msgstr "Koodi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Kampanjakoodia ei voitu soveltaa:"
|
||||
msgstr "Kampanjakoodia ei voitu käyttää:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kuponki"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Kupongin katkelmavaihtoehdot"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Kupongit -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr "Luo linkkejä, jotka soveltavat kuponkia ja ohjaavat tietylle sivulle"
|
||||
msgstr "Luo linkkejä, jotka lisäävät kupongin ja ohjaavat tietylle sivulle"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -95,12 +104,12 @@ msgstr "Luotu"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Kytke automattiset edut pois päältä"
|
||||
msgstr "Ota automattiset palkinnot pois käytöstä"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Alennus & kanta-asikkuus"
|
||||
msgstr "Alennus & kanta-asiakkuus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
|
|
@ -119,6 +128,12 @@ msgstr "Alennettu summa"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
|
|
@ -127,6 +142,11 @@ msgstr "Näyttönimi"
|
|||
msgid "Done"
|
||||
msgstr "Valmis"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Voimassaolon päättymispäivä:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -140,22 +160,23 @@ msgstr "Lahjakortti tai alennuskoodi..."
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Lahjakortit & eWallet"
|
||||
msgstr "Lahjakortit & eLompakko"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Virheellinen tai vanhentunut koodi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
msgstr "Virheellinen tai vanhentunut tarjouskoodi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
|
|
@ -175,7 +196,7 @@ msgstr "Kanta-asiakkuus"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kanta-asiakkuuden kuponki"
|
||||
msgstr "Kanta-asiakkuuskuponki"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
|
|
@ -185,17 +206,17 @@ msgstr "Kanta-asiakkuus"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Käytä kuponkeja, lahjakortteja ja kanta-asiakasohjelmia kassassa"
|
||||
msgstr "Kanta-asiakkuusohjelmat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Kanta-asiakkaan sääntö"
|
||||
msgstr "Kanta-asiakkuussääntö"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Maksa eWalletilla"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Tuotevariaatio"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -214,8 +235,7 @@ msgstr "Kampanjakoodi"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Tarjoa joko kuponki tai ohjelma."
|
||||
|
||||
|
|
@ -228,8 +248,8 @@ msgstr "Uudelleenohjaus"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Rajoita julkaisu tälle verkkosivustolle."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Rajoita tiettyyn verkkosivuun."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -243,14 +263,18 @@ msgstr "Myyntitilausrivi"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Jaa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Jaa %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -262,37 +286,59 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Jaa kanta-asiakaskortti"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Näytä alennus välisummassa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Näytä julkaisemattomien tuotteiden varoitus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "Kuponkia sovelletaan automaattisesti, kun lisäät jotain ostoskoriin."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Kuponkia lisätään automaattisesti, kun lisäät jotakin ostoskoriin."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Seuraava tarjouskoodi on sovellettu tilaukseesi:"
|
||||
msgstr "Seuraavaa tarjouskoodia käytetään tilaukseesi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Kampanjakoodin on oltava yksilöllinen."
|
||||
msgstr "Tarjouskoodin on oltava yksilöllinen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Jaetun verkkosivuston on vastattava ohjelman verkkosivustoa."
|
||||
msgstr "Jaetun verkkosivuston on vastattava ohjelman verkkosivua."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Jotta eLompakkoon voi lisätä saldoa portaalin kautta, eLompankon tuotteiden "
|
||||
"on oltava julkaistuja."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Lataa saldoa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Käytä"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -306,22 +352,14 @@ msgstr "Verkkosivu"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Voit jakaa tämän kampanjan asiakkaidesi kanssa.\n"
|
||||
" Sitä sovelletaan kassalla, kun asiakas käyttää tätä linkkiä."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Sinulla on"
|
||||
"Voit jakaa tämän tarjouksen asiakkaidesi kanssa.\n"
|
||||
" Sitä sovelletaan kassalla, kun asiakas käyttää "
|
||||
"tätä linkkiä."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Olet onnistuneesti soveltanut koodia:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "sähköiseen lompakkoon"
|
||||
msgstr "Olet onnistuneesti lisännyt koodin:"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Manon Rondou, 2025\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:29+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/fr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Un bon de réduction est nécessaire pour les programmes de réduction."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Un bon de réduction avec le même code a été trouvé."
|
||||
|
||||
|
|
@ -48,22 +43,26 @@ msgstr "Disponible sur le site web"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Impossible de traiter le paiement : la récompense appliquée a été modifiée "
|
||||
"ou a expiré."
|
||||
"ou a expiré. \n"
|
||||
"Veuillez actualiser la page et réessayer."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Obtenir"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Coûts"
|
||||
msgid "Code:"
|
||||
msgstr "Code :"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +74,17 @@ msgstr "Vous ne pouvez pas appliquer ce code promo :"
|
|||
msgid "Coupon"
|
||||
msgstr "Bon de réduction"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Options snippets bon de réduction"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Bons de réduction -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -119,13 +129,24 @@ msgstr "Montant de la remise"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Fait"
|
||||
msgstr "Terminé"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Date d'expiration :"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -135,7 +156,7 @@ msgstr "Générer un lien réduit"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Carte cadeau ou code de remise ..."
|
||||
msgstr "Carte-cadeau ou code de remise ..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
|
|
@ -144,6 +165,12 @@ msgstr "Cartes-cadeaux & e-wallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -152,20 +179,15 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Code promotionnel invalide ou expiré."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -193,9 +215,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Règle de fidélité"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Payer avec un e-wallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de produit"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -214,8 +236,7 @@ msgstr "Code promo"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Fournissez un bon de réduction ou un programme."
|
||||
|
||||
|
|
@ -228,8 +249,8 @@ msgstr "Redirection"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Limiter la publication sur ce site web."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restreindre à un site Web spécifique"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -239,18 +260,22 @@ msgstr "Commande client"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Ligne de commande client"
|
||||
msgstr "Ligne de commande"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Partager"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Partager %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -262,17 +287,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Partager une carte de fidélité"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Afficher la remise dans le sous-total"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Afficher l’avertissement produit non publié"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Le bon de réduction sera automatiquement appliqué lorsque vous ajouterez "
|
||||
"quelque chose dans votre panier."
|
||||
|
|
@ -285,45 +314,55 @@ msgstr "Le code promo suivant a été appliqué à votre commande :"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Le code promo doit être unique."
|
||||
msgstr "Le code promotionnel doit être unique."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Le site web partagé doit correspondre au site web du programme."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Pour pouvoir recharger votre eWallet depuis le portail, les produits eWallet "
|
||||
"doivent être\n"
|
||||
" publiés."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Recharger"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Utiliser"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Site web"
|
||||
msgstr "Site Web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Vous pouvez partager cette promotion avec vos clients.\n"
|
||||
"Elle sera appliqué à la caisse lorsque le client utilisera ce lien."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Vous avez"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Vous avez appliqué le code suivant avec succès :"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "dans votre e-wallet"
|
||||
|
|
|
|||
|
|
@ -1,311 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Done"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Share"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "You have"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,207 +1,220 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# שהאב חוסיין <shhab89@gmail.com>, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# yotam katzuni, 2022
|
||||
# Roy Sayag, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# tomerlayline, 2024
|
||||
# or balmas, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "דרוש קופון לתכניות קופונים."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "כל האתרים"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "זמין באתר האינטרנט"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "עלויות"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "לא הצלחנו לממש את הקוד:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "קופון"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr "יוצר קישור שמחובר לקופון ומפנה לעמוד מסויים"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "בטל הטבות אוטומטיות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "הנחות ותכניות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "קוד הנחנה או כרטיס מתנה"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "הנחה"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "סכום הנחה"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "בוצע"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "יצירת קישור קצר"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "כרטיס מתנה או קוד הנחה..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "כרטיסי מתנה & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "קוד הקופון לא חוקי או שפג תוקפו."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "נקודות מועדון לקוחות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "קופון loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "מועדון לקוחות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "מועדוני לקוחות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "כלל מועדון לקוחות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "שלם עם ארנק דיגיטלי"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "תוכנית"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
|
|
@ -211,69 +224,76 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "קוד"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "הפנייה מחדש"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "הגבל את הפרסום לאתר זה."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "הזמנת לקוח"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "שורת הזמנת לקוח"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "שתף"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "שתף קישור"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "שתף כרטיס נאמנות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "הצגת הנחה בסכום הביניים"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -284,43 +304,50 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "קוד ההנחה חייב להיות ייחודי."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "אתר אינטרנט"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "יש לך"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,38 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -48,19 +40,22 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -73,6 +68,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -81,12 +87,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "इस तारीख को बनाया गया"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -115,13 +121,24 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "हो गया"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -140,28 +157,29 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "इन्होंने आखिरी बार अपडेट किया"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "आखिरी बार अपडेट हुआ"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -189,8 +207,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -210,8 +228,7 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -224,28 +241,32 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "सेल्स ऑर्डर"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "बिक्री आदेश पंक्ति"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "शेयर करें"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
|
|
@ -258,17 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -279,43 +304,50 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "वेबसाइट"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "आपके पास"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,50 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Antonijo Kovacevic, 2023
|
||||
# Matija Gudlin, 2024
|
||||
# Servisi RAM d.o.o. <support@servisiram.hr>, 2024
|
||||
# Vladimir Vrgoč, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Vladimir Vrgoč, 2024\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon je potreban za kuponske programe."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Pronađen je kupon s istim kodom."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Sve web stranice"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
|
|
@ -53,30 +40,44 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Zahtjev"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Troškovi"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Nije moguće primijeniti promotivni kôd:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
|
|
@ -86,12 +87,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -101,32 +102,43 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Kuponi i Vjernost"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Kod za popust ili darovna kartica."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Popust:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Iznos s popustom"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Riješeno"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -136,37 +148,38 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Darovna kartica ili kod za popust"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Poklon bon & eNovčanik"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Nevažeći ili istekao promotivni kôd."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -181,27 +194,27 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program lojalnosti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Programi odanosti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Pravila odanosti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
|
|
@ -211,117 +224,130 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promo kod"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Navedite ili kupon ili program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmjeri"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Ograniči objavljivanje na ovu web stranicu."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajnog naloga"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Podjeli"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Podijeli link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Podijelite karticu vjernosti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Prikaži popust u međuzbroju"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Kupon će se automatski primijeniti kada nešto dodate u svoju košaricu."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Sljedeći promotivni kod je primijenjen na vašu narudžbu:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Promo kod mora biti jedinstven."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Imaš"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Uspješno ste primijenili sljedeći kôd:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,39 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Kovács Tibor <kovika@gmail.com>, 2022
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2024\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:48+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/hu/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -49,20 +43,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Költségek"
|
||||
msgid "Code:"
|
||||
msgstr "Kód:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -74,6 +71,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -97,7 +105,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Kuponok és hűség"
|
||||
msgstr "Kedvezmény és hűség"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
|
|
@ -107,15 +115,21 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Árengedmény:"
|
||||
msgstr "Kedvezmény:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Engedményes összeg"
|
||||
msgstr "Kedvezményes összeg"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
|
|
@ -124,6 +138,11 @@ msgstr "Megjelenített név"
|
|||
msgid "Done"
|
||||
msgstr "Kész"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Lejárat dátuma:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -137,23 +156,24 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Ajándékkártyák & eTárca"
|
||||
msgstr "Ajándékkártyák & ePénztárca"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Érvénytelen vagy lejárt promóciós kód"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -162,7 +182,7 @@ msgstr "Frissítette"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
msgstr "Frissítve"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -190,8 +210,8 @@ msgid "Loyalty Rule"
|
|||
msgstr "Hűség szabály"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -210,42 +230,47 @@ msgid "Promo Code"
|
|||
msgstr "Promóciós kód"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Átirányít"
|
||||
msgstr "Átirányítás"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Közzététel korlátozása erre a weboldalra."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Vevői rendelések"
|
||||
msgstr "Vevői rendelés"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Értékesítési megrendelés sor"
|
||||
msgstr "Vevői rendelés sor"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Megosztás"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -257,16 +282,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -275,43 +305,52 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Használja"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Honlap"
|
||||
msgstr "Weboldal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Önnek van"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,38 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryanto The <ry.the77@gmail.com>, 2022
|
||||
# Muftiara Syuhada <muftiara.syuhada@gmail.com>, 2022
|
||||
# Abe Manyo, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2025\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:47+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/id/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon dibutuhkan untuk program kupon."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Kupon dengan kode yang sama ditemukan."
|
||||
|
||||
|
|
@ -48,22 +43,26 @@ msgstr "Tersedia pada Website"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Tidak dapat memproses pembayaran: hadiah yang diterapkan diubah atau telah "
|
||||
"kadaluwarsa."
|
||||
"Tidak dapat memproses pembayaran: hadiah yang diterapkan diubah atau "
|
||||
"kadaluwarsa.\n"
|
||||
"Silakan refresh halaman dan coba lagi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Klaim"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Biaya"
|
||||
msgid "Code:"
|
||||
msgstr "Kode:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +74,17 @@ msgstr "Tidak dapat menggunakan kode promo:"
|
|||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opsi-Opsi Snippet Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Kupon-Kupon -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -117,6 +127,12 @@ msgstr "Jumlah dengan diskon"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
|
|
@ -125,6 +141,11 @@ msgstr "Nama Tampilan"
|
|||
msgid "Done"
|
||||
msgstr "Selesai"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Tanggal Kadaluwarsa:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -142,6 +163,12 @@ msgstr "Gift card & eWallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -150,11 +177,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Tidak valid atau kode promo kadaluwarsa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah pada"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -191,9 +213,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Peraturan Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Bayar dengan eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -212,27 +234,26 @@ msgstr "Kode Promo"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Sediakan baik kupon atau program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Alihkan"
|
||||
msgstr "Redirect"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Batasi publikasi ke website ini."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Batasi ke website tertentu."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pesanan Penjualan"
|
||||
msgstr "Order Penjualan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
|
|
@ -241,14 +262,18 @@ msgstr "Baris Pesanan Penjualan"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Bagikan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Share %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -260,17 +285,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Bagikan Kartu Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Tunjukkan Diskon di Subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Tunjukkan Peringatan Produk yang Belum Dipublikasikan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Kupon akan secara otomatis diterapkan saat Anda menambahkan sesuatu ke "
|
||||
"keranjang belanja Anda."
|
||||
|
|
@ -283,17 +312,35 @@ msgstr "Kode promo berikut akan diterapkan pada pesanan Anda:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Kode promo harus unik."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Website yang dibagikan harus sesuai dengan website program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Untuk dapat top up eWallet dari portal, produk-produk eWallet harus\n"
|
||||
" dipublikasikan."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Top Up"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Gunakan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -306,22 +353,14 @@ msgstr "Website"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Anda dapat mengganti promosi ini dengan pelanggan Anda.\n"
|
||||
" Ini akan diterapkan pada checkout saat pelanggan menggunakan link ini."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Anda punya"
|
||||
" Ini akan diterapkan pada checkout saat pelanggan "
|
||||
"menggunakan link ini."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Anda berhasil menerapkan kode berikut:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "di ewallet Anda"
|
||||
|
|
|
|||
|
|
@ -1,311 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Lokið"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Kynningarkóði"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Takmarka birtingu við þessa vefsíðu."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Sölupöntun"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Sölupöntunarlína"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Deila"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Vefsíða"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,38 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2024
|
||||
# Marianna Ciofani, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2025\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/it/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Un coupon è necessario per i programmi di coupon."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "È stato trovato un buono sconto con lo stesso codice."
|
||||
|
||||
|
|
@ -48,22 +43,26 @@ msgstr "Disponibile sul sito web"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Impossibile elaborare il pagamento: la ricompensa applicata è stata "
|
||||
"modificata o è scaduta."
|
||||
"modificata o è scaduta.\n"
|
||||
"Ricarica la pagina e prova di nuovo."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Richiedi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Costi"
|
||||
msgid "Code:"
|
||||
msgstr "Codice:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +74,17 @@ msgstr "Impossibile applicare il codice promozionale:"
|
|||
msgid "Coupon"
|
||||
msgstr "Buono sconto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opzioni snippet buono sconto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Buoni sconto -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -118,6 +128,12 @@ msgstr "Importo scontato"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
|
|
@ -126,6 +142,11 @@ msgstr "Nome visualizzato"
|
|||
msgid "Done"
|
||||
msgstr "Completata"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Data di scadenza:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -143,6 +164,12 @@ msgstr "Carte regalo e portafoglio elettronico"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -151,11 +178,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Codice promozionale non valido o scaduto."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -192,9 +214,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Regola fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Paga con e Wallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante prodotto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -213,8 +235,7 @@ msgstr "Codice promozionale"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Metti a disposizione o un coupon o un programma."
|
||||
|
||||
|
|
@ -227,8 +248,8 @@ msgstr "Reindirizza"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Limita la pubblicazione a questo sito web."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Limita a un sito web specifico."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -242,14 +263,18 @@ msgstr "Riga ordine di vendita"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Condividi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Condividi %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -261,17 +286,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Condividi carta fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostra sconto nel subtotale"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Avviso visualizzazione prodotto non pubblicato"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Il coupon sarà applicato automaticamente quando aggiungi qualcosa al tuo "
|
||||
"carrello."
|
||||
|
|
@ -284,17 +313,36 @@ msgstr "Il seguente codice promozionale è stato applicato al tuo ordine:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Il codice promozionale deve essere univoco."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Il sito web condiviso deve corrispondere al sito web del programma."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Per poter ricaricare il tuo portafoglio elettronico dal portale, è "
|
||||
"necessario pubblicare prodotti\n"
|
||||
" di questo tipo."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Ricarica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Usa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -307,22 +355,13 @@ msgstr "Sito web"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Puoi condividere questa promozione con i tuoi clienti.\n"
|
||||
"Se il cliente usa questo link, sarà applicato alla cassa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Ci sono"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "È stato applicato con successo il seguente codice:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "nel tuo eWallet"
|
||||
|
|
|
|||
|
|
@ -1,47 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Noma Yuki, 2022
|
||||
# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2022
|
||||
# Andy Yiu, 2023
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Junko Augias, 2025\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:21+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/ja/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "クーポンプログラムにはクーポンが必要です。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "同じコードのクーポンが見つかりました。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "全てのWebサイト"
|
||||
msgstr "全てのウェブサイト"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
|
|
@ -50,20 +43,26 @@ msgstr "ウェブサイトで入手可能"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr "支払処理ができません: 適用された特典が変更されたか、使用期限が切れています。"
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"支払処理ができません。適用された特典が変更されたか、使用期限が切れていま"
|
||||
"す。\n"
|
||||
"ページを更新して、再度お試し下さい。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "クレーム"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "経費"
|
||||
msgid "Code:"
|
||||
msgstr "コード:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +74,17 @@ msgstr "以下のプロモコードを適用できませんでした:"
|
|||
msgid "Coupon"
|
||||
msgstr "クーポン"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "クーポンスニペットオプション"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "クーポン -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -113,10 +123,16 @@ msgstr "値引:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "割引額"
|
||||
msgstr "値引額"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
|
|
@ -125,6 +141,11 @@ msgstr "表示名"
|
|||
msgid "Done"
|
||||
msgstr "完了"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "有効期限:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -142,6 +163,12 @@ msgstr "ギフトカード & eウォレット"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -150,11 +177,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "無効または期限切れのプロモコード。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -191,9 +213,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "ロイヤリティ規則"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "eWalletで支払う"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "プロダクトバリアント"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -212,8 +234,7 @@ msgstr "プロモコード"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "クーポンまたはプログラムを提供"
|
||||
|
||||
|
|
@ -226,8 +247,8 @@ msgstr "リダイレクト"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "このWebサイトへの公開を制限します。"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "特定のウェブサイトに制限"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -241,14 +262,18 @@ msgstr "販売オーダ明細"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "共有"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "共有 %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -257,20 +282,24 @@ msgstr "リンクをシェア"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "ロイヤルティカードをシェア"
|
||||
msgstr "ロイヤリティカードをシェア"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "小計に割引を表示する"
|
||||
msgstr "小計に値引を表示する"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "未公開のプロダクトを表示する警告"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "カートに商品を入れると、クーポンが自動的に適用されます。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -281,16 +310,36 @@ msgstr "以下のプロモコードが注文に適用されました:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "プロモコードは一意にして下さい。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "共有ウェブサイトは、プログラムのウェブサイトに対応している必要があります。"
|
||||
msgstr ""
|
||||
"共有ウェブサイトは、プログラムのウェブサイトに対応している必要があります。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"ポータルからeウォレットにチャージできるようにするには、eウォレット用のプロダ"
|
||||
"クトが公開\n"
|
||||
" されている必要があります。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "チャージ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "試用"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -304,22 +353,14 @@ msgstr "ウェブサイト"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"このプロモーションをお客様と共有することができます。\n"
|
||||
" 顧客がこのリンクを使用すると、チェックアウト時に適用されます。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "この取引先には"
|
||||
" 顧客がこのリンクを使用すると、チェックアウト時に適用されま"
|
||||
"す。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "以下のコードが適用されました:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "eWalletで"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,31 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,13 +40,23 @@ msgid "Available on Website"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -57,6 +69,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -99,6 +122,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -107,6 +136,11 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -124,6 +158,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,11 +172,6 @@ msgstr ""
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -173,8 +208,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -193,8 +228,8 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -207,7 +242,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -221,14 +256,19 @@ msgid "Sales Order Line"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -240,16 +280,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -258,17 +303,35 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -281,20 +344,11 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,313 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "ថ្លៃ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "ការបញ្ចុះតម្លៃ៖"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "ចំនួនទឹកប្រាក់ដែលបានបញ្ចុះ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "រួចរាល"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "កម្មវិធីភាពស្មោះត្រង់"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "កម្មវិធីភាពស្មោះត្រង់"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "វិធានភាពស្មោះត្រង់"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "បញ្ជូនបន្ត"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "រឹតត្បិតការបោះពុម្ពផ្សាយគេហទំព័រនេះ។"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "លក់តាមការបញ្ជាទិញ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "លំដាប់បញ្ជាទិញ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "ចែករំលែក"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "ចែករំលែកតំណភ្ជាប់"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "វែបសាយ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "អ្នកត្រូវ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,40 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
# Daye Jeong, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2025\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:47+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/ko/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "쿠폰 프로그램을 사용하려면 쿠폰이 필요합니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "코드가 동일한 쿠폰이 이미 존재합니다."
|
||||
msgstr "동일한 코드를 사용 중인 쿠폰이 이미 존재합니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -48,20 +43,25 @@ msgstr "웹사이트에서 이용 가능"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr "결제 처리 불가: 적용된 보상이 변경되었거나 만료되었습니다."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"결제를 처리할 수 없습니다: 리워드 적용 내용이 변경되었거나 만료되었습니다.\n"
|
||||
"페이지를 새로고침 후 다시 시도하세요."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "청구"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "비용"
|
||||
msgid "Code:"
|
||||
msgstr "코드 :"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -73,6 +73,17 @@ msgstr "프로모션 코드를 적용할 수 없습니다:"
|
|||
msgid "Coupon"
|
||||
msgstr "쿠폰"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "쿠폰 스니펫 옵션"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "쿠폰 -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -115,6 +126,12 @@ msgstr "할인 금액"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
|
|
@ -123,6 +140,11 @@ msgstr "표시명"
|
|||
msgid "Done"
|
||||
msgstr "완료"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "만료일:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -140,6 +162,12 @@ msgstr "기프트 카드 및 e월렛"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -148,11 +176,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "프로모션 코드가 잘못되었거나 기간이 만료되었습니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -189,9 +212,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "로열티 규칙"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "e월렛으로 결제"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "품목 세부선택"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -210,8 +233,7 @@ msgstr "프로모션 코드"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "쿠폰 또는 프로그램 제공."
|
||||
|
||||
|
|
@ -224,8 +246,8 @@ msgstr "리디렉션"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "이 웹 사이트로의 게시를 제한합니다."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "특정 웹사이트로만 제한."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -239,14 +261,18 @@ msgstr "판매 주문 내역"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "공유"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "공유 %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -258,17 +284,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "포인트 카드 공유"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "소계에 할인 가격 표시"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "미게시 품목 경고 표시"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "장바구니에 상품을 추가하면 쿠폰이 자동으로 적용됩니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -279,17 +309,35 @@ msgstr "프로모션 코드가 적용되었습니다:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "프로모션 코드는 고유해야 합니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "공유 웹사이트는 해당 프로그램의 웹사이트와 일치해야 합니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"포털에서 이월렛을 충전하기 위해서는 반드시 이월렛 제품을 먼저 게시해야\n"
|
||||
"합니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "충전하기"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "사용"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -302,22 +350,14 @@ msgstr "웹사이트"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"이 프로모션은 고객과 공유할 수 있습니다.\n"
|
||||
" 고객이 해당 링크를 사용하면 결제 시 할인이 적용됩니다"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "가 있습니다."
|
||||
" 고객이 해당 링크를 사용하면 결제 시 할인이 적용됩"
|
||||
"니다"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "코드가 성공적으로 적용되었습니다:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "e월렛"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -39,19 +40,22 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -64,6 +68,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -106,6 +121,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -114,6 +135,11 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -131,6 +157,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -139,11 +171,6 @@ msgstr ""
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -180,8 +207,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -200,8 +227,8 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -214,7 +241,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -228,14 +255,19 @@ msgid "Sales Order Line"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -247,16 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -265,17 +302,35 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -288,20 +343,11 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,313 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "ສໍາເລັດແລ້ວ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "ໃບສັ່ງຊື້"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "ລາຍການສິນຄ້າທີ່ສັ່ງຊື້"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,46 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# Edgaras Kriukonis <edgaras@focusate.eu>, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# Naglis Jonaitis, 2022
|
||||
# Aleksandr Jadov <a.jadov@tata.lt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Antanas Muliuolis <an.muliuolis@gmail.com>, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
# Gailius Kazlauskas <gailius@vialaurea.lt>, 2024
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2024\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Rastas kuponas su tokiu pačiu kodu"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -54,20 +40,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Išlaidos"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -77,7 +66,18 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kuponas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
|
|
@ -87,12 +87,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -102,7 +102,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Nuolaidos ir Lojalumo programos"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
|
|
@ -112,22 +112,33 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Nuolaida:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Nuolaidos suma"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Atlikta"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -142,47 +153,48 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Dovanų kortelės ir e-piniginė"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Klaidingas arba pasibaigusio galiojimo nuolaidos kodas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lojalumas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Lojalumo programos kuponas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Lojalumo programa"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -192,17 +204,17 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Lojalumo programos taisyklės"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Mokėti Su El. Pinigine"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programa"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
|
|
@ -215,46 +227,51 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Nukreipti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Apriboti skelbimą šioje svetainėje."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pardavimo užsakymas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pardavimo užsakymo eilutė"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Dalintis"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Dalintis nuoroda"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -262,16 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -280,43 +302,52 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Svetainė"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Jūs turite"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Sėkmingai pritaikėte šį kodą:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,41 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Anzelika Adejanova, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2022
|
||||
# Will Sensors, 2025
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -51,20 +40,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Izmaksas"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -76,6 +68,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -84,12 +87,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -104,12 +107,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Atlaides kods vai dāvanu karte"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Atlaide:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -118,13 +121,24 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Gatavs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -134,7 +148,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Dāvanu karte vai atlaides kods..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
|
|
@ -143,28 +157,29 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -192,8 +207,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -209,12 +224,11 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promo kods"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -227,33 +241,37 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Ierobežot publicēšanu šajā tīmekļa vietnē."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pasūtījums"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pasūtījuma Rinda"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Dalīties"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Dalīšanās saite"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -261,17 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Rādīt atlaidi starpsummā"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -282,43 +304,50 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Tīkla vietne"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Tev ir"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,311 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "കൂപ്പൺ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "ഡിസ്കൗണ്ടും ലോയൽറ്റിയും"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "ഡിസ്കൗണ്ട്:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "ചെയ്തു"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "സമ്മാന കാർഡുകളും ഇ വാലറ്റും"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "ലോയൽറ്റി കൂപ്പൺ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "ലോയൽറ്റി പ്രോഗ്രാം"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "ലോയൽറ്റി പ്രോഗ്രാം"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "പ്രൊമോ കോഡ്"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "സെയിൽസ് ഓർഡർ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "സെയിൽസ് ഓർഡർ ലൈൻ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "ഷെയർ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "വെബ്സൈറ്റ് "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,292 +1,335 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# nurbakhit nurka <nurbakhit@bumanit.mn>, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# baaska sh <sh.baaskash@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Гэрэлтцог Цогтбаатар, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2024\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Энэ купон нь купон хөтөлбөрт зориулагдсан."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Ижил кодтой купон олдлоо."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Бүх вебсайтууд"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Вебсайт дээр хэрэгжих"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Ашиглах"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Өртөгүүд"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Хэрэгжих боломжгүй урамшууллын код :"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Купон"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Уг Купоныг ашиглах линк үүсгэж холбогдох тусгай веб хуудас руу шилжинэ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Урамшуулал автоматаар хэрэгжихгүй"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Хөнгөлөлт & Лоялти"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Урамшууллын код эсвэл бэлгийн карт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Хөнгөлөлт:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Хөнгөлөлтийн дүн"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Дууссан"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Богино холбоос линк үүсгэх"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Бэлгийн карт эсвэл урамшууллын код..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Бэлгийн карт & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Буруу эсвэл хугацаа нь дууссан урамшуулалын код."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Лоялти"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Лоялти купон"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Лоялти хөтөлбөр"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Лоялти хөтөлбөрүүд"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Лоялти дүрэм"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "eWallet-р төлөх"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Програм"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Вебсайтын хөтөлбөр"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Промо код"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Купон эсвэл хөтөлбөр онооно уу."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Шилжүүлэх"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Энэ вебсайтад нийтлэхийг хязгаарлах"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Борлуулалтын захиалга"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Борлуулалтын захиалгын мөр"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Хуваалцах"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Хуваалцах Холбоос"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Лоялти дансыг хуваалцах"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Хөнгөлөлтийн нийлбэрийг харуулах"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "Купон нь сагсанд бараа нэмэх үед шууд автоматаар хэрэгжинэ."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Дараах промо код таны захиалганд хэрэгжсэн:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Промо код үл давтагдах ёстой."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Хуваалцсан вэбсайт нь хөтөлбөрийн вэбсайттай тохирч байх ёстой."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -294,28 +337,17 @@ msgstr "Хуваалцсан вэбсайт нь хөтөлбөрийн вэбс
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Вэбсайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Та уг урамшууллыг үйлчлүүлэгчиддээ тараах боломжтой. Үйлчлүүлэгчид уг "
|
||||
"линкийг ашигласнаар захиалгаа батлах үед нь урамшуулал хэрэгжих болно."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Танд"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Та дараах промо кодыг хэрэгжүүллээ:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "таны ewallet дансанд"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,29 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Oakarmin Iron <oakarminiron@gmail.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-23 02:47+0000\n"
|
||||
"Last-Translator: Oakarmin Iron <oakarminiron@gmail.com>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/my/>\n"
|
||||
"Language: my\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,13 +42,23 @@ msgid "Available on Website"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -57,6 +71,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -65,7 +90,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "ဖန်တီးသူ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
|
|
@ -99,6 +124,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -107,6 +138,11 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -124,6 +160,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,15 +174,10 @@ msgstr ""
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်သူ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
|
|
@ -173,8 +210,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -193,8 +230,8 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -207,7 +244,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -221,14 +258,19 @@ msgid "Sales Order Line"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -240,16 +282,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -258,17 +305,35 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -281,20 +346,11 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,36 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
# Rune Restad, 2024
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Rune Restad, 2024\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:48+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -46,20 +43,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kostnader"
|
||||
msgid "Code:"
|
||||
msgstr "Kode:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -71,6 +71,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr "Kupong"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -84,7 +95,7 @@ msgstr "Opprettet av"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -113,6 +124,12 @@ msgstr "Rabattert beløp"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
|
|
@ -121,6 +138,11 @@ msgstr "Visningsnavn"
|
|||
msgid "Done"
|
||||
msgstr "Fullført"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -138,6 +160,12 @@ msgstr "Gavekort og eWallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -146,11 +174,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Ugyldig eller utgått kampanjekode."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -187,9 +210,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Lojalitetsregel"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -207,8 +230,8 @@ msgid "Promo Code"
|
|||
msgstr "Kampanje-kode"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -221,8 +244,8 @@ msgstr "Omdiriger"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Begrens publisering til dette nettstedet"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -235,14 +258,19 @@ msgid "Sales Order Line"
|
|||
msgstr "Salgsordrelinje"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Del"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -254,16 +282,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -272,17 +305,35 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -295,20 +346,11 @@ msgstr "Nettsted"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Du har"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,37 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2025\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 08:07+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/nl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Voor kortingsbonprogramma's is een kortingsbon nodig."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Er is een kortingsbon met dezelfde code gevonden."
|
||||
|
||||
|
|
@ -47,22 +43,26 @@ msgstr "Beschikbaar op website"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Betaling kan niet worden verwerkt: de toegepaste beloning is gewijzigd of "
|
||||
"verlopen."
|
||||
"De betaling kan niet worden verwerkt: de toegepaste beloning is gewijzigd of "
|
||||
"is verlopen.\n"
|
||||
"Herlaad de pagina en probeer het opnieuw."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Aanspraak"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kosten"
|
||||
msgid "Code:"
|
||||
msgstr "Code:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -74,6 +74,17 @@ msgstr "Kan de promotiecode niet toepassen:"
|
|||
msgid "Coupon"
|
||||
msgstr "Kortingsbon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Kortingsbon-snippetopties"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Kortingsbonnen –"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -84,12 +95,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -118,14 +129,25 @@ msgstr "Kortingsbedrag"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Gereed"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Vervaldatum:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -143,6 +165,12 @@ msgstr "Cadeaubonnen & eWallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -151,11 +179,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Ongeldige of vervallen promocode."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -192,9 +215,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Loyaliteitsregel"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Betalen met eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Productvariant"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -213,8 +236,7 @@ msgstr "Promotiecode"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Geef een kortingsbon of een programma."
|
||||
|
||||
|
|
@ -227,8 +249,8 @@ msgstr "Doorverwijzen"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Publiceren op deze website beperken."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Beperken tot een specifieke website."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -242,18 +264,22 @@ msgstr "Verkooporderregel"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Delen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Deel %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Link delen"
|
||||
msgstr "Koppeling delen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -261,17 +287,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Klantenkaart delen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Toon Korting in Subtotaal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Toon waarschuwing voor niet-gepubliceerd product"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"De kortingsbon wordt automatisch toegepast wanneer je iets aan je "
|
||||
"winkelmandje toevoegt."
|
||||
|
|
@ -279,23 +309,42 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "De volgende promotiecode is toegepast op je bestelling:"
|
||||
msgstr "De volgende promotiecode is toegepast op je order:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "De promotiecode moet uniek zijn."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
"De gedeelde website moet overeenkomen met de website van het programma."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Om de e-wallet vanaf het portaal te kunnen opladen, moeten e-wallet-"
|
||||
"producten\n"
|
||||
" gepubliceerd zijn."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Opladen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Gebruiken"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -308,22 +357,14 @@ msgstr "Website"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Je kunt deze actie delen met je klanten.\n"
|
||||
" Het wordt toegepast bij het afrekenen wanneer de klant deze link gebruikt."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Je hebt"
|
||||
" Het wordt toegepast bij het afrekenen wanneer de "
|
||||
"klant deze link gebruikt."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Je hebt succesvol de volgende code toegepast:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "in je eWallet"
|
||||
|
|
|
|||
|
|
@ -1,44 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
|
||||
# Paweł Wodyński <pw@myodoo.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Łukasz Grzenkowicz <lukasz.grzenkowicz@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-21 14:24+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/pl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon jest wymagany w przypadku programów kuponowych."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Znaleziono kupon z tym samym kodem."
|
||||
|
||||
|
|
@ -54,20 +45,23 @@ msgstr "Dostępne na stronie internetowej"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Twierdzenie"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Koszty"
|
||||
msgid "Code:"
|
||||
msgstr "Kod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -79,6 +73,17 @@ msgstr "Nie można zastosować kodu promocyjnego:"
|
|||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -122,6 +127,12 @@ msgstr "Kwota upustu"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
|
|
@ -130,6 +141,11 @@ msgstr "Nazwa wyświetlana"
|
|||
msgid "Done"
|
||||
msgstr "Wykonano"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Data wygaśnięcia:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -147,6 +163,12 @@ msgstr "Karty podarunkowe i e-portfel"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -155,11 +177,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Nieważny lub wygasły kod promocyjny."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -196,9 +213,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Zasady lojalności"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Płać za pomocą e-portfela"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Wariant produktu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -216,8 +233,8 @@ msgid "Promo Code"
|
|||
msgstr "Kod promocyjny"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Dostarcz kupon lub program."
|
||||
|
||||
|
|
@ -230,8 +247,8 @@ msgstr "Przekieruj"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Ogranicz publikowanie do tej strony."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Ogranicz do określonej strony."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -244,14 +261,19 @@ msgid "Sales Order Line"
|
|||
msgstr "Pozycja zamówienia sprzedaży"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Udostępnij"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -263,16 +285,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Udostępnij kartę lojalnościową"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Pokaż upust w sumie częściowej"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Kupon zostanie automatycznie zastosowany po dodaniu produktu do koszyka."
|
||||
|
||||
|
|
@ -282,19 +309,37 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr "Następujący kod promocyjny został zastosowany do Twojego zamówienia:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Kod promocyjny musi być unikalny."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
"Udostępniona strona internetowa powinna odpowiadać stronie internetowej "
|
||||
"programu."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Użyj"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -307,22 +352,13 @@ msgstr "Strona internetowa"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Możesz udostępnić tę promocję swoim klientom.\n"
|
||||
"Zostanie ona zastosowana przy kasie, gdy klient skorzysta z tego linku."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Masz"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Poniższy kod został pomyślnie zastosowany:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "w portfelu elektronicznym"
|
||||
|
|
|
|||
|
|
@ -1,91 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# 425fe09b3064b9f906f637fff94056ae_a00ea56 <0fa3588fa89906bfcb3a354600956e0e_308047>, 2022
|
||||
# Daniel C Santos <dcs@thinkopensolutions.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2022
|
||||
# Pedro Castro Silva <pedrocs@exo.pt>, 2022
|
||||
# Vasco Rodrigues, 2024
|
||||
# Rita Bastos, 2024
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2025
|
||||
# Daniel Reis, 2025
|
||||
# Maitê Dietze, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:32+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/pt/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
msgstr "É necessário um cupom para os programas de cupons."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
msgstr "Foi encontrado um cupom com o mesmo código."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
msgstr "Todos os sites"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
msgstr "Disponível no site"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Não é possível processar o pagamento: a recompensa aplicada foi alterada ou "
|
||||
"expirou.\n"
|
||||
"Atualize a página e tente novamente."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
msgstr "Resgatar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Custos"
|
||||
msgid "Code:"
|
||||
msgstr "Código:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
msgstr "Não foi possível aplicar o código promocional:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Cupão"
|
||||
msgstr "Cupom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opções de snippet de cupom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Cupons -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Criar links que apliquem um cupom e redirecionem para uma página específica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -100,7 +104,7 @@ msgstr "Criado em"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
msgstr "Recompensas automáticas desabilitadas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
|
|
@ -110,7 +114,7 @@ msgstr "Desconto e fidelidade"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
msgstr "Código de desconto ou vale-presente"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -124,18 +128,29 @@ msgstr "Valor de desconto"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Concluído"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Data de expiração:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
msgstr "Gerar um link curto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
|
|
@ -145,62 +160,63 @@ msgstr "Cartão-presente ou código de desconto..."
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
msgstr "Cartões-presente e carteira digital"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
msgstr "Código promocional expirado ou inválido."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
msgstr "Fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
msgstr "Cupom de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programa de Fidelização"
|
||||
msgstr "Programa de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Programa de Fidelização"
|
||||
msgstr "Programas de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regra de Fidelização"
|
||||
msgstr "Regra de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante do produto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -210,19 +226,18 @@ msgstr "Programa"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
msgstr "Site do programa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Código Promocional"
|
||||
msgstr "Código promocional"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
msgstr "Forneça um cupom ou um programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
|
|
@ -233,71 +248,99 @@ msgstr "Redirecionar"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Restringir publicação a este site."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restringir a um site específico."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Ordem de Venda"
|
||||
msgstr "Pedido de venda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linhas da Ordem de Venda"
|
||||
msgstr "Linha do pedido de venda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Partilhar"
|
||||
msgstr "Compartilhar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Compartilhar %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Partilhar Hiperligação"
|
||||
msgstr "Compartilhar link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
msgstr "Compartilhar cartão-fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Exibir desconto no subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Mostrar aviso de produto não publicado"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"O cupom será aplicado automaticamente quando você adicionar algo ao seu "
|
||||
"carrinho."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
msgstr "O seguinte código promocional foi aplicado em seu pedido:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
msgstr "O código promocional deve ser exclusivo."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "O site compartilhado deve corresponder ao site do programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Para conseguir recarregar a eWallet no portal, os produtos da eWallet devem "
|
||||
"estar publicados."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Recarregar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Usar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -305,26 +348,19 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
msgstr "Site"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Você tem"
|
||||
"Você pode compartilhar essa promoção com seus clientes.\n"
|
||||
"Ela será aplicada no checkout quando o cliente usar esse link."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
msgstr "Você aplicou o seguinte código de desconto com sucesso:"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Luis Bispo, 2023
|
||||
# Kevilyn Rosa, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
# Maitê Dietze, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2025\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/website_sale_loyalty/pt_BR/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "É necessário um cupom para os programas de cupons."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Foi encontrado um cupom com o mesmo código."
|
||||
|
||||
|
|
@ -49,20 +43,26 @@ msgstr "Disponível no site"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Não é possível processar o pagamento: a recompensa aplicada foi alterada ou "
|
||||
"expirou.\n"
|
||||
"Atualize a página e tente novamente."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Reivindicação"
|
||||
msgstr "Resgatar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Custos"
|
||||
msgid "Code:"
|
||||
msgstr "Código:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -74,10 +74,22 @@ msgstr "Não foi possível aplicar o código promocional:"
|
|||
msgid "Coupon"
|
||||
msgstr "Cupom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opções de snippet de cupom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Cupons -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Criar links que apliquem um cupom e redirecionem para uma página específica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -92,7 +104,7 @@ msgstr "Criado em"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Recompensas para automóveis para deficientes"
|
||||
msgstr "Recompensas automáticas desabilitadas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
|
|
@ -116,6 +128,12 @@ msgstr "Valor de desconto"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
|
|
@ -124,10 +142,15 @@ msgstr "Nome exibido"
|
|||
msgid "Done"
|
||||
msgstr "Concluído"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Data de expiração:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Generate Short Link"
|
||||
msgstr "Gerar um link curto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
|
|
@ -141,6 +164,12 @@ msgstr "Cartões-presente e carteira digital"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -149,11 +178,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Código promocional expirado ou inválido."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -177,22 +201,22 @@ msgstr "Cupom de fidelidade"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programa de Fidelidade"
|
||||
msgstr "Programa de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Programas de Fidelidade"
|
||||
msgstr "Programas de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regra de Lealdade"
|
||||
msgstr "Regra de fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Pagar com carteira eletrônica "
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante do produto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -211,8 +235,7 @@ msgstr "Código promocional"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Forneça um cupom ou um programa."
|
||||
|
||||
|
|
@ -225,8 +248,8 @@ msgstr "Redirecionar"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Restringir publicação a este site."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restringir a um site específico."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -236,18 +259,22 @@ msgstr "Pedido de venda"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linha do pedido de vendas"
|
||||
msgstr "Linha do pedido de venda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Compartilhar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Compartilhar %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -256,20 +283,24 @@ msgstr "Compartilhar link"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Compartilhar cartão de fidelidade"
|
||||
msgstr "Compartilhar cartão-fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Exibir desconto no subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Mostrar aviso de produto não publicado"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"O cupom será aplicado automaticamente quando você adicionar algo ao seu "
|
||||
"carrinho."
|
||||
|
|
@ -282,17 +313,35 @@ msgstr "O seguinte código promocional foi aplicado em seu pedido:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "O código promocional deve ser exclusivo."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "O site compartilhado deve corresponder ao site do programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Para conseguir recarregar a eWallet no portal, os produtos da eWallet devem "
|
||||
"estar publicados."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Recarregar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Usar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -305,22 +354,13 @@ msgstr "Site"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Você pode compartilhar essa promoção com seus clientes.\n"
|
||||
"Ela será aplicada no checkout quando o cliente usar esse link."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Você tem"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "You have successfully applied the following code:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "na sua carteira digital"
|
||||
msgstr "Você aplicou o seguinte código de desconto com sucesso:"
|
||||
|
|
|
|||
|
|
@ -1,68 +1,66 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Fenyedi Levente, 2023
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2024
|
||||
# Corina Calin, 2024
|
||||
# Maria Muntean, 2024
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Alin Ilie <alin.ilie@logit-solutions.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Maria Muntean, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-09 14:08+0000\n"
|
||||
"Last-Translator: Alin Ilie <alin.ilie@logit-solutions.com>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Un cupon este necesar pentru programele cu cupon."
|
||||
msgstr "Pentru programele de cupoane este necesar un cupon."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "A fost identificat un cupon cu același cod."
|
||||
msgstr "A fost găsit un cupon cu același cod."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Toate website-urile"
|
||||
msgstr "Toate site-urile web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Disponibil pe website"
|
||||
msgstr "Disponibil pe site-ul web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Revendicare"
|
||||
msgstr "Reclamație"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Costuri"
|
||||
msgid "Code:"
|
||||
msgstr "Cod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -72,14 +70,24 @@ msgstr "Nu s-a putut aplica codul promoțional:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Cupon"
|
||||
msgstr "Cupoane"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Opțiuni pentru fragmente de cupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Cupoane -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Creați link-uri care aplică un cupon și redirecționează către o anumită "
|
||||
"pagină"
|
||||
"Creați linkuri care aplică un cupon și redirecționează către o anumită pagină"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -89,7 +97,7 @@ msgstr "Creat de"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -99,12 +107,12 @@ msgstr "Recompense automate dezactivate"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Discount și loialitate"
|
||||
msgstr "Reduceri și loialitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
msgstr "Cod de reducere sau card cadou"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -114,17 +122,28 @@ msgstr "Reducere:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Valoarea redusă"
|
||||
msgstr "Suma redusă"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Efectuat"
|
||||
msgstr "Gata"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Data expirării:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -139,32 +158,33 @@ msgstr "Card cadou sau cod de reducere..."
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Carduri cadou și eWallet"
|
||||
msgstr "Carduri cadou și portofel electronic"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Cod promoțional nevalid sau expirat."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
msgstr "Cod promoțional invalid sau expirat."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
msgstr "Ultima actualizare de"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
msgstr "Ultima actualizare"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -174,27 +194,27 @@ msgstr "Loialitate"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Cupon de loialitate"
|
||||
msgstr "Cupoane de loialitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program de fidelitate"
|
||||
msgstr "Program de loialitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Programe Loialitate"
|
||||
msgstr "Programe de fidelitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regulă Loialitate"
|
||||
msgstr "Regula de fidelitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Plătiți cu eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta de produs"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -204,7 +224,7 @@ msgstr "Program"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Website program"
|
||||
msgstr "Site-ul programului"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
|
|
@ -212,8 +232,8 @@ msgid "Promo Code"
|
|||
msgstr "Cod promoțional"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Furnizați fie un cupon, fie un program."
|
||||
|
||||
|
|
@ -226,8 +246,8 @@ msgstr "Redirecționare"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Limitați publicarea pe acest site web."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Restricționați la un anumit site web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -237,21 +257,26 @@ msgstr "Comandă de vânzare"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linie comandă vânzare"
|
||||
msgstr "Linie de comandă de vânzare"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Partajează"
|
||||
msgstr "Partajare"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Partajare %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Împarte legatură"
|
||||
msgstr "Partajează link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -259,35 +284,58 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Partajați cardul de fidelitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Afișați reducerea în subtotal"
|
||||
msgstr "Afișează reducerea în subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Afișează avertismentul pentru produsul nepublicat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "Cuponul va fi aplicat automat atunci când adăugați ceva în coș."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Cupoanul va fi aplicat automat când adaugi ceva în coș."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Următorul cod promoțional a fost aplicat pe comanda dvs:"
|
||||
msgstr "Următorul cod promoțional a fost aplicat comenzii dvs.:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Codul promoțional trebuie să fie unic."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
"Site-ul web distribuit trebuie să corespundă cu site-ul web al programului."
|
||||
"Site-ul web partajat trebuie să corespundă site-ului web al programului."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Reîncărcare"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Utilizare"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -295,28 +343,17 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Pagină web"
|
||||
msgstr "Site web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Puteți partaja această promoție cu clienții dvs.\n"
|
||||
" Acesta va fi aplicat la checkout atunci când clientul utilizează acest link."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Aveți"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Ați aplicat cu succes următorul cod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "în ewallet-ul dvs."
|
||||
|
|
|
|||
|
|
@ -1,39 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Константин Коровин <korovin74@gmail.com>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-22 11:28+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/ru/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Для участия в купонных программах необходим купон."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Был найден купон с таким же кодом."
|
||||
|
||||
|
|
@ -49,20 +46,26 @@ msgstr "Доступно на сайте"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Невозможно обработать платеж: примененная скидка была изменена или истек ее "
|
||||
"срок действия.\n"
|
||||
"Пожалуйста, обновите страницу и повторите попытку."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Заявка"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Затраты"
|
||||
msgid "Code:"
|
||||
msgstr "Код:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -74,6 +77,17 @@ msgstr "Не удалось применить промокод:"
|
|||
msgid "Coupon"
|
||||
msgstr "Купон"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -84,12 +98,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
msgstr "Создано:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
msgstr "Дата создания:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -114,17 +128,28 @@ msgstr "Скидка:"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "сумма скидок"
|
||||
msgstr "Дисконтированная сумма"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Выполнено"
|
||||
msgstr "Готово"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Дата истечения срока действия:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -143,28 +168,29 @@ msgstr "Подарочные карты и электронный кошелек
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Недействительный или просроченный промокод."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
msgstr "Последнее обновление:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
msgstr "Дата последнего обновления:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -179,7 +205,7 @@ msgstr "Купон лояльности"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Программа Лояльности"
|
||||
msgstr "Программа лояльности"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
|
|
@ -192,9 +218,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Правило лояльности"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Оплата с помощью электронного кошелька"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -212,8 +238,8 @@ msgid "Promo Code"
|
|||
msgstr "Промо код"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Предоставьте либо купон, либо программу."
|
||||
|
||||
|
|
@ -226,8 +252,8 @@ msgstr "Перенаправление"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Ограничить публикацию на этом сайте."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Ограничить конкретным веб-сайтом."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -240,14 +266,19 @@ msgid "Sales Order Line"
|
|||
msgstr "Позиция заказа на продажу"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Поделиться"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Поделиться %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -259,18 +290,22 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Поделитесь картой лояльности"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Показать скидку в промежуточном итоге"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
"Купон будет автоматически применен, когда вы добавите товар в корзину."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Купон будет автоматически применен, когда вы добавите товар в корзину."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -278,45 +313,79 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr "Следующий промокод был применен к вашему заказу:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Промокод должен быть уникальным."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Общий сайт должен соответствовать сайту программы."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Использовать"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Вебсайт"
|
||||
msgstr "Сайт"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Вы можете поделиться этой акцией со своими клиентами.\n"
|
||||
" Она будет применена при оформлении заказа, когда покупатель воспользуется этой ссылкой."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Вы имеете"
|
||||
" Она будет применена при оформлении заказа, когда "
|
||||
"покупатель воспользуется этой ссылкой."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Вы успешно применили следующий код:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "в вашем электронном кошельке"
|
||||
#~ msgid "<strong> - </strong>"
|
||||
#~ msgstr "<strong> - </strong>"
|
||||
|
||||
#~ msgid "<strong>Coupons - </strong>"
|
||||
#~ msgstr "<strong>Купоны - </strong>"
|
||||
|
||||
#~ msgid "Costs"
|
||||
#~ msgstr "Расходы"
|
||||
|
||||
#~ msgid "Free"
|
||||
#~ msgstr "Бесплатно"
|
||||
|
||||
#~ msgid "Pay with eWallet"
|
||||
#~ msgstr "Оплата с помощью электронного кошелька"
|
||||
|
||||
#~ msgid "Restrict publishing to this website."
|
||||
#~ msgstr "Ограничьте публикацию на этом сайте."
|
||||
|
||||
#~ msgid "You have"
|
||||
#~ msgstr "У вас"
|
||||
|
||||
#~ msgid "in your ewallet"
|
||||
#~ msgstr "в вашем электронном кошельке"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Alexandra Brencicova <alexandra.brencicova@gmail.com>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Chris Podivinsky, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Chris Podivinsky, 2025\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -49,20 +40,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Náklady"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -72,7 +66,18 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kupón"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
|
|
@ -82,12 +87,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -107,7 +112,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Zľava:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -116,13 +121,24 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hotové"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -132,7 +148,7 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Darčeková karta alebo zľavový kód..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
|
|
@ -141,28 +157,29 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -177,27 +194,27 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Vernostný program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Vernostné programy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Vernostné pravidlo"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
|
|
@ -211,47 +228,50 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Presmerovať"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Obmedzte publikovanie na túto webstránku."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Objednávka "
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Položka objednávok"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Zdieľať"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Zdieľať odkaz"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -259,17 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -280,43 +304,50 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Máte"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,44 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Gregor Flajs, 2024
|
||||
# Jan Zorko, 2025
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:31+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/sl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Najden je bil kupon z isto kodo."
|
||||
|
||||
|
|
@ -54,20 +44,23 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Zahtevek"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Stroški"
|
||||
msgid "Code:"
|
||||
msgstr "Koda:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -79,6 +72,17 @@ msgstr "Promocijske kode ni bilo mogoče uporabiti:"
|
|||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -121,6 +125,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
|
|
@ -129,6 +139,11 @@ msgstr "Prikazani naziv"
|
|||
msgid "Done"
|
||||
msgstr "Opravljeno"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Datum poteka:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -146,6 +161,12 @@ msgstr "Darilne kartice in eDenarnica"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -154,11 +175,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Neveljavna ali potekla promocijska koda."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -195,9 +211,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Pravilo zvestobe"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Različica proizvoda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -216,8 +232,7 @@ msgstr "Promocijska koda"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -230,8 +245,8 @@ msgstr "Preusmeri"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Omejitev objav na to spletno stran."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -245,14 +260,18 @@ msgstr "Postavka prodajnega naloga"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Souporaba"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -264,17 +283,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Kupon bo samodejno uporabljen, ko dodate nekaj v svojo košarico."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -285,17 +308,33 @@ msgstr "Na vaše naročilo je bila uporabljena naslednja promocijska koda:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Promocijska koda mora biti edinstvena."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Uporabi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -308,20 +347,11 @@ msgstr "Spletna stran"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Imate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Uspešno ste uporabili naslednjo kodo:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,29 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:38+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,13 +39,23 @@ msgid "Available on Website"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -57,6 +68,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -99,6 +121,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -107,6 +135,11 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -124,6 +157,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,11 +171,6 @@ msgstr ""
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -173,8 +207,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -193,8 +227,8 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -207,7 +241,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -221,14 +255,19 @@ msgid "Sales Order Line"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -240,16 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -258,17 +302,35 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -281,20 +343,11 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,317 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2024
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\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_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "A coupon is needed for coupon programs."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "A coupon with the same code was found."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "All websites"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Available on Website"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Claim"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Troškovi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Could not apply the promo code:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr "Create links that apply a coupon and redirect to a specific page"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Disabled Auto Rewards"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Discount & Loyalty"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Popust:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Discounted amount"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Završeno"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Generate Short Link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Gift card or discount code..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Gift cards & eWallet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Invalid or expired promo code."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Loyalty"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Loyalty Coupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Loyalty Program"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Loyalty Programs"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Loyalty Rule"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Pay with eWallet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Program"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Program Website"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promotivni kod"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Provide either a coupon or a program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmeri"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Ograniči objavljivanje na ovom website-u."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Porudžbenica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Linija porudžbenice"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Podeli"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Podeli link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Share Loyalty Card"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Show Discount in Subtotal"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "Kupon će biti automatski primenjen kada dodate nešto u vašu korpu."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "The following promo code was applied on your order:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "The promo code must be unique."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "The shared website should correspond to the website of the program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "You have"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "You have successfully applied the following code:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "in your ewallet"
|
||||
|
|
@ -1,29 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,13 +39,23 @@ msgid "Available on Website"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -57,6 +68,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -99,6 +121,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -107,6 +135,11 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -124,6 +157,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,11 +171,6 @@ msgstr ""
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -173,8 +207,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -193,8 +227,8 @@ msgid "Promo Code"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -207,7 +241,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -221,14 +255,19 @@ msgid "Sales Order Line"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -240,16 +279,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -258,17 +302,35 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -281,20 +343,11 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,44 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Robert Frykelius <robert.frykelius@linserv.se>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Simon S, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Lasse L, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2025\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/sv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "En kupong behövs för kupongprogram."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "En kupong med samma kod hittades."
|
||||
|
||||
|
|
@ -54,22 +43,23 @@ msgstr "Tillgänglig på webbplatsen"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Kan inte behandla betalningen: tillämpad belöning har ändrats eller har löpt"
|
||||
" ut."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Anspråk"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kostnader"
|
||||
msgid "Code:"
|
||||
msgstr "Kod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -81,6 +71,17 @@ msgstr "Det gick inte att tillämpa kampanjkoden:"
|
|||
msgid "Coupon"
|
||||
msgstr "Kupong"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -95,7 +96,7 @@ msgstr "Skapad av"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -124,6 +125,12 @@ msgstr "Rabatterat Pris"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
|
|
@ -132,6 +139,11 @@ msgstr "Visningsnamn"
|
|||
msgid "Done"
|
||||
msgstr "Klar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Förfallo Datum:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -149,6 +161,12 @@ msgstr "Presentkort & eWallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -157,11 +175,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Fel eller utgången kod."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -170,7 +183,7 @@ msgstr "Senast uppdaterad av"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
msgstr "Senast uppdaterad den"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -190,7 +203,7 @@ msgstr "Lojalitetsprogram"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "lojalitetsprogram"
|
||||
msgstr "Lojalitetsprogram"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
|
|
@ -198,9 +211,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Lojalitetsregler"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Betala med eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -219,8 +232,7 @@ msgstr "Kampanj Kod"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Ge antingen en kupong eller ett program."
|
||||
|
||||
|
|
@ -233,28 +245,32 @@ msgstr "Omdirigera"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Begränsa publicering till denna webbplats."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Begränsa till en viss webbplats."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Order"
|
||||
msgstr "Försäljningsorder"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Orderrad"
|
||||
msgstr "Försäljningsorderrad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Dela Dokument"
|
||||
msgstr "Andel"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Dela %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
|
|
@ -267,17 +283,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Dela lojalitetskort"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Visa rabatt i delsumma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Kupongen tillämpas automatiskt när du lägger till något i din kundvagn."
|
||||
|
||||
|
|
@ -289,17 +309,33 @@ msgstr "Följande kampanjkod tillämpades på din beställning:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Kampanjkoden måste vara unik."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Den delade webbplatsen ska motsvara programmets webbplats."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Användning"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -312,22 +348,14 @@ msgstr "Webbplats"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Du kan dela denna kampanj med dina kunder.\n"
|
||||
" Det kommer att tillämpas vid kassan när kunden använder denna länk."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Du har"
|
||||
" Det kommer att tillämpas vid kassan när kunden "
|
||||
"använder denna länk."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Du har framgångsrikt använt följande kod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "i din e-plånbok"
|
||||
|
|
|
|||
|
|
@ -1,300 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -1,38 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# monchai7 <montchye@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2025\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 22:55+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/th/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "ต้องใช้คูปองสำหรับโปรแกรมคูปอง"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "พบคูปองที่มีรหัสเดียวกัน"
|
||||
|
||||
|
|
@ -48,22 +43,23 @@ msgstr "มีอยู่บนเว็บไซต์"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"ไม่สามารถประมวลผลการชำระเงินได้: "
|
||||
"รางวัลที่ใช้ได้รับการเปลี่ยนแปลงหรือหมดอายุแล้ว"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "เรียกร้อง"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "ต้นทุน"
|
||||
msgid "Code:"
|
||||
msgstr "โค้ด:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +71,17 @@ msgstr "ไม่สามารถใช้รหัสโปรโมชั่
|
|||
msgid "Coupon"
|
||||
msgstr "คูปอง"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -117,6 +124,12 @@ msgstr "จำนวนส่วนลด"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
|
|
@ -125,6 +138,11 @@ msgstr "แสดงชื่อ"
|
|||
msgid "Done"
|
||||
msgstr "เสร็จสิ้น"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "วันหมดอายุ:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -142,6 +160,12 @@ msgstr "บัตรของขวัญ & eWallet"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
|
|
@ -150,11 +174,6 @@ msgstr "ไอดี"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "รหัสโปรโมชั่นไม่ถูกต้องหรือหมดอายุ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -191,9 +210,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "กฎลูกค้าสมาชิก"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "ชำระเงินด้วย eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ตัวแปรสินค้า"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -212,8 +231,7 @@ msgstr "รหัสโปรโมชั่น"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "ให้คูปองหรือโปรแกรม"
|
||||
|
||||
|
|
@ -226,8 +244,8 @@ msgstr "เปลี่ยนเส้นทาง"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "จำกัดการเผยแพร่ในเว็บไซต์นี้"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "จำกัดเฉพาะเว็บไซต์ใดเว็บไซต์หนึ่ง"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -237,18 +255,22 @@ msgstr "คำสั่งขาย"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "ไลน์คำสั่งขาย"
|
||||
msgstr "รายการคำสั่งขาย"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "แชร์"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -260,17 +282,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "แชร์บัตรสมาชิก"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "แสดงส่วนลดเป็นยอดรวมย่อย"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "คูปองจะถูกนำไปใช้โดยอัตโนมัติเมื่อคุณเพิ่มสินค้าในรถเข็นของคุณ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -281,17 +307,33 @@ msgstr "ใช้รหัสโปรโมชั่นต่อไปนี้
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "รหัสโปรโมชั่นจะต้องไม่ซ้ำกัน"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "เว็บไซต์ที่แชร์ควรสอดคล้องกับเว็บไซต์ของโปรแกรม"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "ใช้"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -304,22 +346,13 @@ msgstr "เว็บไซต์"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"คุณสามารถแชร์โปรโมชั่นนี้กับลูกค้าของคุณได้\n"
|
||||
" โปรโมชั่นจะถูกนำไปใช้ที่จุดชำระเงินเมื่อลูกค้าใช้ลิงก์นี้"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "คุณถูกเชิญเข้าสู่:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "คุณใช้รหัสต่อไปนี้สำเร็จแล้ว:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "ในกระเป๋าเงินของคุณ"
|
||||
|
|
|
|||
|
|
@ -1,42 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Halil, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 14:46+0000\n"
|
||||
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/tr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon programları için bir kupon gereklidir."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Aynı koda sahip bir kupon bulundu."
|
||||
|
||||
|
|
@ -52,20 +46,25 @@ msgstr "Web sitesinde mevcut"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Ödeme işlenemiyor: uygulanan ödül değiştirildi veya süresi doldu.\n"
|
||||
"Lütfen sayfayı yenileyin ve tekrar deneyin."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "İddia"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Maliyetler"
|
||||
msgid "Code:"
|
||||
msgstr "Kod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -77,6 +76,17 @@ msgstr "Promosyon kodu uygulanamadı:"
|
|||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Kupon Görüntüleme Seçenekleri"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Kuponlar -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -86,12 +96,12 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
msgstr "Tarafından oluşturuldu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -120,13 +130,24 @@ msgstr "İndirimli tutar"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Biten"
|
||||
msgstr "Yapıldı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Geçerlilik Tarihi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -141,10 +162,16 @@ msgstr "Hediye çeki veya indirim kodu..."
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Hediye kartları ve e-Cüzdan"
|
||||
msgstr "Hediye kartları & e-Cüzdan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -153,11 +180,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "Geçersiz veya süresi dolmuş promosyon kodu."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -194,9 +216,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "Sadakat Kuralları"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "eCüzdan ile ödeme yapın"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Ürün Varyantı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -214,8 +236,8 @@ msgid "Promo Code"
|
|||
msgstr "Promosyon kodu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Bir kupon veya bir program sağlayın."
|
||||
|
||||
|
|
@ -228,8 +250,8 @@ msgstr "Yeniden yönlendir"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Bu web sitesinde yayınlamayı kısıtlayın."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Belirli bir web sitesine sınırlayın."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -242,14 +264,19 @@ msgid "Sales Order Line"
|
|||
msgstr "Satış Sipariş Satırı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Paylaş"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Paylaş %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -261,18 +288,22 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Sadakat Kartını Paylaş"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "İndirimi Ara Toplamda Göster"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Yayınlanmamış Ürün Uyarısını Göster"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
"Sepetinize bir şey eklediğinizde kupon otomatik olarak uygulanacaktır."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Sepetinize bir şey eklediğinizde kupon otomatik olarak uygulanacaktır."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -280,17 +311,37 @@ msgid "The following promo code was applied on your order:"
|
|||
msgstr "Siparişinize aşağıdaki promosyon kodu uygulandı:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Promosyon kodu benzersiz olmalıdır."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Paylaşılan web sitesi, programın web sitesine karşılık gelmelidir."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Portaldan e-Cüzdan'a yükleme yapabilmek için, e-Cüzdan ürünlerinin "
|
||||
"yayımlanmış olması gerekmektedir"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Bakiye Yükleme"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Kullan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -303,22 +354,13 @@ msgstr "Websitesi"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Bu promosyonu müşterilerinizle paylaşabilirsiniz.\n"
|
||||
"Müşteri bu bağlantıyı kullandığında ödeme sırasında uygulanacaktır."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Var"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Aşağıdaki kodu başarıyla uyguladınız:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "e-cüzdanınızda"
|
||||
|
|
|
|||
|
|
@ -1,288 +1,335 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Потрібен купон для купонних програм."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Було знайдено купон з таким же кодом."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr "Усі веб-сайти"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr "Доступний на веб-сайті"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Претензія"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Вартість"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Неможливо застосувати промокод:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Купони"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Створюйте посилання, які застосовують купон і перенаправляють на певну "
|
||||
"сторінку"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Автоматичні винагороди вимкнено"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Знижка та програма лояльності"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Код знижки або подарункова карта"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Знижка:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Сума знижок"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Виконано"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Створіть коротке посилання"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Подарункова карта або код знижки..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Подарункові картки та електронний гаманець"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Недійсний промо-код або термін його дії минув."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Програма лояльності"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Купон на знижку"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Програма лояльності"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Програми лояльності"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Правило лояльності"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Платіть через електронний гаманець"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Програма"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Веб-сайт програми"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Промокод"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Вкажіть або купон або програму."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Перенаправлення"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Обмеження публікації на цьому веб-сайті."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Замовлення на продаж"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Рядок замовлення"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Поділитися"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Посилання для поширення"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Поділитися карткою лояльності"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Показати знижку в підсумку"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr ""
|
||||
"Купон буде автоматично застосовано, коли ви додасте щось у свій кошик."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "До вашого замовлення було застосовано наступний промокод:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Промокод повинен бути унікальним."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Спільний веб-сайт має відповідати веб-сайту програми."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -290,28 +337,17 @@ msgstr "Спільний веб-сайт має відповідати веб-с
|
|||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "Website"
|
||||
msgstr "Веб-сайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Ви можете поділитися цією акцією зі своїми клієнтами.\n"
|
||||
" Її буде застосовано під час оформлення замовлення, коли клієнт використовує це посилання."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Ви маєте"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Ви успішно застосували наступний код:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "на вашому електронному гаманці"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,312 +1,429 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
# Imran Pathan, 2024
|
||||
#
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:24+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Imran Pathan, 2024\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#, fuzzy
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid "All websites"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
msgstr ""
|
||||
msgstr "Kupon dasturlari uchun kupon zarur."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, fuzzy
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Aynan shu kodli kupon topildi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
#, fuzzy
|
||||
msgid "All websites"
|
||||
msgstr "Barcha veb-saytlar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
#, fuzzy
|
||||
msgid "Available on Website"
|
||||
msgstr "Veb-saytda mavjud"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"To‘lovni amalga oshirib bo‘lmadi: qo‘llanilgan mukofot o‘zgartirilgan yoki "
|
||||
"muddati tugagan. Iltimos, sahifani yangilab, qaytadan urinib ko‘ring."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
#, fuzzy
|
||||
msgid "Claim"
|
||||
msgstr "Tuntutan"
|
||||
msgstr "Talab qilish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kos"
|
||||
#, fuzzy
|
||||
msgid "Code:"
|
||||
msgstr "Kod:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
#, fuzzy
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr ""
|
||||
msgstr "Promokodni qo‘llab bo‘lmadi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
#, fuzzy
|
||||
msgid "Coupon"
|
||||
msgstr "Kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
#, fuzzy
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr "Kupon parchasi sozlamalari"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
#, fuzzy
|
||||
msgid "Coupons -"
|
||||
msgstr "Kuponlar -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
#, fuzzy
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Kupon qo‘llaydigan va ma'lum sahifaga yo‘naltiradigan havolalar yaratish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
#, fuzzy
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
msgstr "Yaratuvchi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
#, fuzzy
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
msgstr "Yaratilgan sana"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
#, fuzzy
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr ""
|
||||
msgstr "Avtomatik mukofotlar o‘chirilgan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
#, fuzzy
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr ""
|
||||
msgstr "Chegirma va sodiqlik"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
#, fuzzy
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
msgstr "Chegirma kodi yoki sovg‘a kartasi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
#, fuzzy
|
||||
msgid "Discount:"
|
||||
msgstr "Diskaun:"
|
||||
msgstr "Chegirma:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
#, fuzzy
|
||||
msgid "Discounted amount"
|
||||
msgstr "Jumlah diskaun"
|
||||
msgstr "Chegirma miqdori"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
#, fuzzy
|
||||
msgid "Done"
|
||||
msgstr "Selesai"
|
||||
msgstr "Tayyor"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
#, fuzzy
|
||||
msgid "Expired Date:"
|
||||
msgstr "Tugash sanasi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
#, fuzzy
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Hasilkan Pautan Pendek"
|
||||
msgstr "Qisqa havola yaratish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
#, fuzzy
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr ""
|
||||
msgstr "Sovg‘a kartasi yoki chegirma kodi..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
#, fuzzy
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr ""
|
||||
msgstr "Sovg‘a kartalari va elektron hamyon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
#, fuzzy
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
msgstr "Noto‘g‘ri yoki muddati o‘tgan promokod."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
#, fuzzy
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
msgstr "Oxirgi yangilovchi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
#, fuzzy
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
msgstr "Oxirgi yangilangan sana"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
#, fuzzy
|
||||
msgid "Loyalty"
|
||||
msgstr ""
|
||||
msgstr "Sodiqlik"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
#, fuzzy
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kupon Kesetiaan"
|
||||
msgstr "Sodiqlik kuponi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
#, fuzzy
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program Kesetiaan"
|
||||
msgstr "Sodiqlik dasturi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.res_config_settings_view_form_inherit_website_sale_loyalty
|
||||
#, fuzzy
|
||||
msgid "Loyalty Programs"
|
||||
msgstr "Program Kesetiaan"
|
||||
msgstr "Sodiqlik dasturlari"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
#, fuzzy
|
||||
msgid "Loyalty Rule"
|
||||
msgstr ""
|
||||
msgstr "Sodiqlik qoidasi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
#, fuzzy
|
||||
msgid "Product Variant"
|
||||
msgstr "Mahsulot varianti"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
#, fuzzy
|
||||
msgid "Program"
|
||||
msgstr "Program"
|
||||
msgstr "Dastur"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#, fuzzy
|
||||
msgid "Program Website"
|
||||
msgstr ""
|
||||
msgstr "Dastur veb-sayti"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
#, fuzzy
|
||||
msgid "Promo Code"
|
||||
msgstr ""
|
||||
msgstr "Promokod"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#, fuzzy
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
msgstr "Kupon yoki dastur taqdim eting."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
#, fuzzy
|
||||
msgid "Redirect"
|
||||
msgstr "Ubah hala"
|
||||
msgstr "Qayta yo‘naltirish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Ma'lum bir veb-sayt bilan cheklash."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
#, fuzzy
|
||||
msgid "Sales Order"
|
||||
msgstr "Pesanan Jualan"
|
||||
msgstr "Sotish buyurtmasi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
#, fuzzy
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Barisan Pesanan Jualan"
|
||||
msgstr "Sotish buyurtmasi satri"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Share"
|
||||
msgstr "Kongsi"
|
||||
msgstr "Ulashish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#, fuzzy
|
||||
msgid "Share %s"
|
||||
msgstr "%sni ulashish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
#, fuzzy
|
||||
msgid "Share Link"
|
||||
msgstr ""
|
||||
msgstr "Havolani ulashish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
#, fuzzy
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr ""
|
||||
msgstr "Sodiqlik kartasini ulashish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
#, fuzzy
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
msgstr "Oraliq jami qismida chegirmani ko‘rsatish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
#, fuzzy
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "Nashr qilinmagan mahsulot haqida ogohlantirishni ko‘rsatish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr ""
|
||||
"Savatchangizga biror narsa qo‘shganingizda kupon avtomatik ravishda "
|
||||
"qo‘llaniladi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
#, fuzzy
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr ""
|
||||
msgstr "Buyurtmangizga quyidagi promokod qo‘llanildi:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
msgstr "Promokod noyob bo‘lishi shart."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#, fuzzy
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Ulashilgan veb-sayt dastur veb-saytiga mos kelishi kerak."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"Portaldan elektron hamyonni to‘ldirish imkoniyatiga ega bo‘lish uchun "
|
||||
"elektron hamyon mahsulotlari e'lon qilingan bo‘lishi lozim."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#, fuzzy
|
||||
msgid "Top Up"
|
||||
msgstr "To‘ldirish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
#, fuzzy
|
||||
msgid "Use"
|
||||
msgstr "Foydalanish"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
#, fuzzy
|
||||
msgid "Website"
|
||||
msgstr "laman web"
|
||||
msgstr "Veb-sayt"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Ushbu aksiyani mijozlaringiz bilan ulashishingiz mumkin. Mijoz bu havoladan "
|
||||
"foydalanganda, aksiya hisob-kitob paytida qo‘llaniladi."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "You have"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
#, fuzzy
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
msgstr "Quyidagi kodni muvaffaqiyatli tatbiq etdingiz:"
|
||||
|
|
@ -1,37 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Nancy Momoland <thanh.np2502@gmail.com>, 2023
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:47+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_loyalty/vi/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Cần phiếu giảm giá cho chương trình phiếu giảm giá. "
|
||||
msgstr "Cần phiếu giảm giá cho chương trình phiếu giảm giá."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "Một phiếu giảm giá có cùng mã đã được tìm thấy."
|
||||
|
||||
|
|
@ -47,38 +43,52 @@ msgstr "Có trên trang web"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"Không thể xử lý thanh toán: phần thưởng được áp dụng đã thay đổi hoặc đã hết"
|
||||
" hạn."
|
||||
"Không thể xử lý thanh toán: phần thưởng được áp dụng đã thay đổi hoặc hết "
|
||||
"hạn.\n"
|
||||
"Vui lòng tải lại trang và thử lại."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Nhận"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Chi phí"
|
||||
msgid "Code:"
|
||||
msgstr "Mã:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Không thể áp dụng mã khuyến mại: "
|
||||
msgstr "Không thể áp dụng mã khuyến mại:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Phiếu giảm giá"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "Phiếu giảm giá -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
msgstr ""
|
||||
"Tạo đường link áp dụng phiếu giảm giá và chuyển hướng tới trang cụ thể"
|
||||
msgstr "Tạo đường link áp dụng phiếu giảm giá và chuyển hướng tới trang cụ thể"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
|
|
@ -103,7 +113,7 @@ msgstr "Chiết khấu & Khách hàng thân thiết"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr ""
|
||||
msgstr "Mã giảm giá hoặc thẻ quà tặng"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -117,13 +127,24 @@ msgstr "Số tiền chiết khấu"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hoàn thành"
|
||||
msgstr "Hoàn tất"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "Ngày hết hạn:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -142,23 +163,24 @@ msgstr "Thẻ quà tặng & ví điện tử"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "Mã khuyến mãi không hợp lệ hoặc đã quá hạn. "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
msgstr "Mã khuyến mãi không hợp lệ hoặc đã quá hạn."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
|
|
@ -188,12 +210,12 @@ msgstr "CT KH thân thiết"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Quy tắc CT KH thân thiết"
|
||||
msgstr "Quy tắc khách hàng thân thiết"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "Thanh toán bằng ví điện tử"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -212,10 +234,9 @@ msgstr "Mã khuyến mại"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Cung cấp phiếu giảm giá hoặc chương trình. "
|
||||
msgstr "Cung cấp phiếu giảm giá hoặc chương trình."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
|
|
@ -226,8 +247,8 @@ msgstr "Chuyển hướng"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "Hạn chế phát hành cho website này"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "Giới hạn cho trang web nhất định"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -237,18 +258,22 @@ msgstr "Đơn bán hàng"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Chi tiết đơn hàng"
|
||||
msgstr "Dòng đơn bán hàng"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "Chia sẻ"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "Chia sẻ %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -260,37 +285,57 @@ msgid "Share Loyalty Card"
|
|||
msgstr "Chia sẻ thẻ khách hàng thân thiết"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Hiển thị Chiết khấu trong Thành tiền"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
msgstr "Phiếu giảm giá sẽ được tự động áp dụng khi bạn thêm hàng vào giỏ. "
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "Phiếu giảm giá sẽ được tự động áp dụng khi bạn thêm hàng vào giỏ."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Mã khuyến mãi sau đã được áp dụng vào đơn hàng: "
|
||||
msgstr "Mã khuyến mãi sau đã được áp dụng vào đơn hàng:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Mã khuyến mãi phải là duy nhất."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "Website được chia sẻ phải tương ứng với website của chương trình. "
|
||||
msgstr "Website được chia sẻ phải tương ứng với website của chương trình."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "Nạp"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "Sử dụng"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
|
|
@ -304,22 +349,14 @@ msgstr "Trang web"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"Bạn có thể chia sẻ khuyến mãi này với khách hàng.\n"
|
||||
" Khuyến mãi này sẽ được áp dụng lúc thanh toán khi khách hàng sử dụng đường link này. "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "Bạn có"
|
||||
" Khuyến mãi này sẽ được áp dụng lúc thanh toán "
|
||||
"khi khách hàng sử dụng đường link này."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "Bạn đã áp dụng mã khuyến mại sau thành công:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "trong ví điện tử của bạn"
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:28+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -17,15 +17,13 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -41,19 +39,22 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgid "Code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -66,6 +67,17 @@ msgstr ""
|
|||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -108,6 +120,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -116,6 +134,11 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -133,6 +156,12 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -141,11 +170,6 @@ msgstr ""
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -182,8 +206,8 @@ msgid "Loyalty Rule"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -203,8 +227,7 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -217,7 +240,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -232,14 +255,18 @@ msgstr ""
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -251,14 +278,19 @@ msgid "Share Loyalty Card"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
|
|
@ -272,17 +304,33 @@ msgstr ""
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -298,17 +346,7 @@ msgid ""
|
|||
" It will be applied at checkout when the customer uses this link."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,40 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# diaojiaolou <124412206@qq.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# 智能科技奇客罗方 <alanljj@gmail.com>, 2022
|
||||
# digitalliuzg8888, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# Chloe Wang, 2025
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Chloe Wang, 2025\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:36+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/website_sale_loyalty/zh_Hans/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "优惠券需要有优惠券方案"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "找到一个相同代码的优惠券。"
|
||||
|
||||
|
|
@ -50,20 +43,25 @@ msgstr "可用于网站"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr "无法处理付款:申请的奖励已更改或过期。"
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"无法处理付款:套用的奖励已更改或过期。\n"
|
||||
"请刷新页面并重试。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "投诉"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "成本"
|
||||
msgid "Code:"
|
||||
msgstr "代码:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -75,6 +73,17 @@ msgstr "无法应用此促销代码:"
|
|||
msgid "Coupon"
|
||||
msgstr "优惠券"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr "优惠券 -"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -88,7 +97,7 @@ msgstr "创建人"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
msgstr "创建日期"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
|
|
@ -117,13 +126,24 @@ msgstr "折扣金额"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "完成"
|
||||
msgstr "已完成"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "过期日期:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
|
|
@ -142,6 +162,12 @@ msgstr "礼品卡和电子钱包"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
|
@ -150,11 +176,6 @@ msgstr "ID"
|
|||
msgid "Invalid or expired promo code."
|
||||
msgstr "促销代码无效或过期。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -163,7 +184,7 @@ msgstr "最后更新人"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
|
|
@ -191,9 +212,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "会员规则"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "电子钱包支付"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "产品变体"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -208,12 +229,11 @@ msgstr "方案网站"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "促销代码"
|
||||
msgstr "优惠券码"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "提供优惠券或方案"
|
||||
|
||||
|
|
@ -226,8 +246,8 @@ msgstr "重定向"
|
|||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "限制发布到本网站。"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "仅限于特定网站。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -237,18 +257,22 @@ msgstr "销售订单"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "销售订单行"
|
||||
msgstr "销售订单明细"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "分享"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "分享%s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -260,17 +284,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "共享会员卡"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "在小计中显示折扣"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "显示未发布产品警告"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "当您在购物车中添加商品时,将自动使用优惠券。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -281,17 +309,35 @@ msgstr "以下优惠券已应用于您的订单:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "促销代码必须是惟一的。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "共享网站应与程序的网站相对应方案。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"若要在门户网站为电子钱包充值,必须先发布电子钱包产品\n"
|
||||
" 。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "增值"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "使用"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -304,22 +350,13 @@ msgstr "网站"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"您可以将优惠券分享给您的客户.\n"
|
||||
" 当客户使用此链接结账时,将会自动使用此优惠券."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "您有"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "下面的优惠码已经使用成功:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "在您的电子钱包当中"
|
||||
|
|
|
|||
|
|
@ -1,37 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Wil Odoo, 2025
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:28+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 08:12+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/website_sale_loyalty/zh_Hant/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "優惠券計劃需要優惠券。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "A coupon with the same code was found."
|
||||
msgstr "找到代碼相同的優惠券。"
|
||||
|
||||
|
|
@ -47,20 +47,25 @@ msgstr "可在網站使用"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Cannot process payment: applied reward was changed or has expired."
|
||||
msgstr "未能處理付款:套用的獎勵已變更或過期。"
|
||||
#: code:addons/website_sale_loyalty/controllers/payment.py:0
|
||||
msgid ""
|
||||
"Cannot process payment: applied reward was changed or has expired.\n"
|
||||
"Please refresh the page and try again."
|
||||
msgstr ""
|
||||
"未能處理付款:套用的獎勵已變更或過期。\n"
|
||||
"請重新載入頁面,然後重試。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "領取"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "費用"
|
||||
msgid "Code:"
|
||||
msgstr "代碼:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
|
|
@ -72,6 +77,17 @@ msgstr "無法套用促銷代碼:"
|
|||
msgid "Coupon"
|
||||
msgstr "優惠券"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option_plugin.js:0
|
||||
msgid "Coupon Snippet Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Coupons -"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_coupon_share
|
||||
msgid "Create links that apply a coupon and redirect to a specific page"
|
||||
|
|
@ -80,7 +96,7 @@ msgstr "創建應用優惠券並重定向到特定頁面的連結"
|
|||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
msgstr "建立人員"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
|
|
@ -100,7 +116,7 @@ msgstr "折扣及會員計劃"
|
|||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "優惠碼或禮品卡"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
|
|
@ -114,6 +130,12 @@ msgstr "折扣金額"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
|
|
@ -122,6 +144,11 @@ msgstr "顯示名稱"
|
|||
msgid "Done"
|
||||
msgstr "完成"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Expired Date:"
|
||||
msgstr "使用期限:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
|
|
@ -139,19 +166,20 @@ msgstr "禮品卡及電子錢包"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_card__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_rule__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_product_product__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order_line__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Invalid or expired promo code."
|
||||
msgstr "促銷代碼無效或過期。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -188,9 +216,9 @@ msgid "Loyalty Rule"
|
|||
msgstr "會員規則"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Pay with eWallet"
|
||||
msgstr "以電子錢包付款"
|
||||
#: model:ir.model,name:website_sale_loyalty.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "產品款式"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
|
|
@ -209,22 +237,21 @@ msgstr "促銷代碼"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "提供優惠券或促銷碼。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "重新指向"
|
||||
msgstr "重新導向"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_program__website_id
|
||||
#: model:ir.model.fields,help:website_sale_loyalty.field_loyalty_rule__website_id
|
||||
msgid "Restrict publishing to this website."
|
||||
msgstr "限制發佈到此網站。"
|
||||
msgid "Restrict to a specific website."
|
||||
msgstr "只限特定網站使用。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
|
|
@ -238,14 +265,18 @@ msgstr "銷售訂單明細"
|
|||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_card_view_tree_inherit_website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_tree_inherit_website_sale_loyalty
|
||||
#, python-format
|
||||
msgid "Share"
|
||||
msgstr "分享"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "Share %s"
|
||||
msgstr "分享 %s"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
|
|
@ -257,17 +288,21 @@ msgid "Share Loyalty Card"
|
|||
msgstr "分享會員卡"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/website_builder/coupon_option.xml:0
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "小計顯示折扣"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__show_non_published_product_warning
|
||||
msgid "Show Non Published Product Warning"
|
||||
msgstr "顯示未發佈產品警告"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The coupon will be automatically applied when you add something in your "
|
||||
"cart."
|
||||
"The coupon will be automatically applied when you add something in your cart."
|
||||
msgstr "你將貨品加入至購物車時,優惠券會自動套用。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
|
|
@ -278,17 +313,35 @@ msgstr "以下促銷代碼已應用於您的訂單:"
|
|||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "推廣代碼必須是唯一的。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
#: code:addons/website_sale_loyalty/wizard/coupon_share.py:0
|
||||
msgid "The shared website should correspond to the website of the program."
|
||||
msgstr "共享的網站應與程序的網站相對應。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.loyalty_program_view_form_inherit_website_sale_loyalty
|
||||
msgid ""
|
||||
"To be able to top up eWallet from the portal, eWallet products must be\n"
|
||||
" published."
|
||||
msgstr ""
|
||||
"若要在門戶網站為電子錢包充值,必須先發佈電子錢包產品\n"
|
||||
" 。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_loyalty/static/src/js/portal_loyalty_card.xml:0
|
||||
msgid "Top Up"
|
||||
msgstr "增值"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Use"
|
||||
msgstr "使用"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__website_id
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__website_id
|
||||
|
|
@ -301,22 +354,31 @@ msgstr "網站"
|
|||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid ""
|
||||
"You can share this promotion with your customers.\n"
|
||||
" It will be applied at checkout when the customer uses this link."
|
||||
" It will be applied at checkout when the customer "
|
||||
"uses this link."
|
||||
msgstr ""
|
||||
"您可以與您的客戶分享此促銷活動。\n"
|
||||
" 當客戶使用此連結時,它將在結帳時帶入。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have"
|
||||
msgstr "您有"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "You have successfully applied the following code:"
|
||||
msgstr "成功套用以下代碼:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr "在你的電子錢包內"
|
||||
#~ msgid "<strong> - </strong>"
|
||||
#~ msgstr "<strong> - </strong>"
|
||||
|
||||
#~ msgid "<strong>Coupons - </strong>"
|
||||
#~ msgstr "<strong>優惠券 - </strong>"
|
||||
|
||||
#~ msgid "Costs"
|
||||
#~ msgstr "費用"
|
||||
|
||||
#~ msgid "Pay with eWallet"
|
||||
#~ msgstr "以電子錢包付款"
|
||||
|
||||
#~ msgid "You have"
|
||||
#~ msgstr "你有"
|
||||
|
||||
#~ msgid "in your ewallet"
|
||||
#~ msgstr "在你的電子錢包內"
|
||||
|
|
|
|||
|
|
@ -4,5 +4,6 @@
|
|||
from . import loyalty_card
|
||||
from . import loyalty_program
|
||||
from . import loyalty_rule
|
||||
from . import product_product
|
||||
from . import sale_order_line
|
||||
from . import sale_order
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class LoyaltyCard(models.Model):
|
||||
_inherit = 'loyalty.card'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,22 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class LoyaltyProgram(models.Model):
|
||||
_name = 'loyalty.program'
|
||||
_inherit = ['loyalty.program', 'website.multi.mixin']
|
||||
|
||||
ecommerce_ok = fields.Boolean("Available on Website", default=True)
|
||||
show_non_published_product_warning = fields.Boolean(compute='_compute_show_non_published_product_warning')
|
||||
|
||||
@api.depends('program_type', 'trigger_product_ids.website_published')
|
||||
def _compute_show_non_published_product_warning(self):
|
||||
for program in self:
|
||||
program.show_non_published_product_warning = (
|
||||
program.program_type == 'ewallet'
|
||||
and any(not product.website_published for product in program.trigger_product_ids)
|
||||
)
|
||||
|
||||
def action_program_share(self):
|
||||
self.ensure_one()
|
||||
|
|
|
|||
|
|
@ -1,25 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class LoyaltyRule(models.Model):
|
||||
_inherit = 'loyalty.rule'
|
||||
|
||||
website_id = fields.Many2one(related='program_id.website_id', store=True)
|
||||
|
||||
# NOTE: is this sufficient?
|
||||
@api.constrains('code', 'website_id')
|
||||
@api.constrains('code', 'website_id', 'active')
|
||||
def _constrains_code(self):
|
||||
#Programs with the same code are allowed to coexist as long
|
||||
# as they are not both accessible from a website.
|
||||
with_code = self.filtered(lambda r: r.mode == 'with_code')
|
||||
with_code = self.filtered(lambda r: r.mode == 'with_code' and r.active)
|
||||
mapped_codes = with_code.mapped('code')
|
||||
read_result = self.env['loyalty.rule'].search_read(
|
||||
[('website_id', 'in', [False] + [w.id for w in self.website_id]),
|
||||
('mode', '=', 'with_code'), ('code', 'in', mapped_codes),
|
||||
('id', 'not in', with_code.ids)],
|
||||
('mode', '=', 'with_code'),
|
||||
('code', 'in', mapped_codes),
|
||||
('id', 'not in', with_code.ids),
|
||||
('active', '=', True)],
|
||||
fields=['code', 'website_id']) + [{'code': p.code, 'website_id': p.website_id} for p in with_code]
|
||||
existing_codes = set()
|
||||
for res in read_result:
|
||||
|
|
@ -30,5 +32,7 @@ class LoyaltyRule(models.Model):
|
|||
raise ValidationError(_('The promo code must be unique.'))
|
||||
existing_codes.add(val)
|
||||
# Prevent coupons and programs from sharing a code
|
||||
if self.env['loyalty.card'].search_count([('code', 'in', mapped_codes)]):
|
||||
if self.env['loyalty.card'].search_count([
|
||||
('code', 'in', mapped_codes), ('active', '=', True)
|
||||
]):
|
||||
raise ValidationError(_('A coupon with the same code was found.'))
|
||||
|
|
|
|||
|
|
@ -0,0 +1,41 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = 'product.product'
|
||||
|
||||
def _can_return_content(self, field_name=None, access_token=None):
|
||||
""" Override of `orm` to give public users access to the unpublished product image.
|
||||
|
||||
Give access to the public users to the unpublished product images if they are linked to a
|
||||
reward.
|
||||
|
||||
:param field_name: The name of the field to check.
|
||||
:param access_token: The access token.
|
||||
:return: Whether to allow the access to the image.
|
||||
:rtype: bool
|
||||
"""
|
||||
if (
|
||||
field_name in ["image_%s" % size for size in [1920, 1024, 512, 256, 128]]
|
||||
and self.env['loyalty.reward'].sudo().search_count([
|
||||
('discount_line_product_id', '=', self.id),
|
||||
], limit=1)
|
||||
):
|
||||
return True
|
||||
return super()._can_return_content(field_name, access_token)
|
||||
|
||||
def _get_product_placeholder_filename(self):
|
||||
""" Override of `product` to set a default image for reward products. """
|
||||
# In sudo mode to allow eCommerce customers to see the placeholder
|
||||
if self.env['loyalty.reward'].sudo().search_count([
|
||||
('discount_line_product_id', '=', self.id),
|
||||
], limit=1):
|
||||
if self.env['loyalty.reward'].sudo().search_count([
|
||||
('program_type', '=', 'gift_card'),
|
||||
('discount_line_product_id', '=', self.id),
|
||||
], limit=1):
|
||||
return 'loyalty/static/img/gift_card.png'
|
||||
return 'loyalty/static/img/discount_placeholder_thumbnail.png'
|
||||
return super()._get_product_placeholder_filename()
|
||||
|
|
@ -1,15 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from collections import defaultdict
|
||||
from datetime import timedelta
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.osv import expression
|
||||
from odoo.fields import Domain
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class SaleOrder(models.Model):
|
||||
_inherit = "sale.order"
|
||||
_inherit = 'sale.order'
|
||||
|
||||
# List of disabled rewards for automatic claim
|
||||
disabled_auto_rewards = fields.Many2many("loyalty.reward", relation="sale_order_disabled_auto_rewards_rel")
|
||||
|
|
@ -22,7 +23,7 @@ class SaleOrder(models.Model):
|
|||
if leaf[0] != 'sale_ok':
|
||||
continue
|
||||
res[idx] = ('ecommerce_ok', '=', True)
|
||||
return expression.AND([res, [('website_id', 'in', (self.website_id.id, False))]])
|
||||
return Domain.AND([res, [('website_id', 'in', (self.website_id.id, False))]])
|
||||
return res
|
||||
|
||||
def _get_trigger_domain(self):
|
||||
|
|
@ -33,9 +34,12 @@ class SaleOrder(models.Model):
|
|||
if leaf[0] != 'program_id.sale_ok':
|
||||
continue
|
||||
res[idx] = ('program_id.ecommerce_ok', '=', True)
|
||||
return expression.AND([res, [('program_id.website_id', 'in', (self.website_id.id, False))]])
|
||||
return Domain.AND([res, [('program_id.website_id', 'in', (self.website_id.id, False))]])
|
||||
return res
|
||||
|
||||
def _get_program_timezone(self):
|
||||
return self.website_id.salesperson_id.tz or super()._get_program_timezone()
|
||||
|
||||
def _try_pending_coupon(self):
|
||||
if not request:
|
||||
return False
|
||||
|
|
@ -73,12 +77,15 @@ class SaleOrder(models.Model):
|
|||
claimed_reward_count = 0
|
||||
claimable_rewards = self._get_claimable_rewards()
|
||||
for coupon, rewards in claimable_rewards.items():
|
||||
if len(coupon.program_id.reward_ids) != 1 or\
|
||||
coupon.program_id.is_nominative or\
|
||||
(rewards.reward_type == 'product' and rewards.multi_product) or\
|
||||
rewards in self.disabled_auto_rewards or\
|
||||
rewards in self.order_line.reward_id:
|
||||
if (
|
||||
len(coupon.program_id.reward_ids) != 1
|
||||
or coupon.program_id.is_nominative
|
||||
or (rewards.reward_type == 'product' and rewards.multi_product)
|
||||
or rewards in self.disabled_auto_rewards
|
||||
or rewards in self.order_line.reward_id
|
||||
):
|
||||
continue
|
||||
|
||||
try:
|
||||
res = self._apply_program_reward(rewards, coupon)
|
||||
if 'error' not in res:
|
||||
|
|
@ -95,7 +102,7 @@ class SaleOrder(models.Model):
|
|||
products with different taxes.
|
||||
In this case, each taxes will have their own discount line. This is required
|
||||
to have correct amount of taxes according to the discount.
|
||||
But we wan't these lines to be `visually` merged into a single one in the
|
||||
But we want these lines to be `visually` merged into a single one in the
|
||||
e-commerce since the end user should only see one discount line.
|
||||
This is only possible since we don't show taxes in cart.
|
||||
eg:
|
||||
|
|
@ -120,14 +127,14 @@ class SaleOrder(models.Model):
|
|||
continue
|
||||
new_lines += self.env['sale.order.line'].new({
|
||||
'product_id': lines[0].product_id.id,
|
||||
'tax_id': False,
|
||||
'tax_ids': False,
|
||||
'price_unit': sum(lines.mapped('price_unit')),
|
||||
'price_subtotal': sum(lines.mapped('price_subtotal')),
|
||||
'price_total': sum(lines.mapped('price_total')),
|
||||
'discount': 0.0,
|
||||
'name': lines[0].name_short if lines.reward_id.reward_type != 'product' else lines[0].name,
|
||||
'product_uom_qty': 1,
|
||||
'product_uom': lines[0].product_uom.id,
|
||||
'product_uom_id': lines[0].product_uom_id.id,
|
||||
'order_id': order.id,
|
||||
'is_reward_line': True,
|
||||
'coupon_id': lines.coupon_id,
|
||||
|
|
@ -156,20 +163,36 @@ class SaleOrder(models.Model):
|
|||
request.session.pop('successful_code')
|
||||
return code
|
||||
|
||||
def _cart_update(self, product_id, line_id=None, add_qty=0, set_qty=0, **kwargs):
|
||||
def _set_delivery_method(self, *args, **kwargs):
|
||||
super()._set_delivery_method(*args, **kwargs)
|
||||
self._update_programs_and_rewards()
|
||||
|
||||
line = self.order_line.filtered(lambda sol: sol.product_id.id == product_id)[:1]
|
||||
reward_id = line.reward_id
|
||||
if set_qty == 0 and line.coupon_id and reward_id and reward_id.reward_type == 'discount':
|
||||
# Force the deletion of the line even if it's a temporary record created by new()
|
||||
line_id = line.id
|
||||
def _remove_delivery_line(self):
|
||||
super()._remove_delivery_line()
|
||||
self._update_programs_and_rewards()
|
||||
|
||||
res = super()._cart_update(
|
||||
product_id, line_id=line_id, add_qty=add_qty, set_qty=set_qty, **kwargs
|
||||
)
|
||||
def _cart_update_order_line(self, order_line, quantity, **kwargs):
|
||||
if (
|
||||
quantity <= 0
|
||||
and order_line.coupon_id
|
||||
and order_line.reward_id
|
||||
and order_line.reward_id.reward_type == 'discount'
|
||||
):
|
||||
# When a reward line is deleted we remove it from the auto claimable rewards
|
||||
order_line = order_line.with_context(website_sale_loyalty_delete=True)
|
||||
|
||||
return super()._cart_update_order_line(order_line, quantity, **kwargs)
|
||||
|
||||
def _verify_cart_after_update(self):
|
||||
super()._verify_cart_after_update()
|
||||
self._update_programs_and_rewards()
|
||||
self._auto_apply_rewards()
|
||||
return res
|
||||
if request: # In case the rewards application modifies the cart quantity
|
||||
request.session['website_sale_cart_quantity'] = self.cart_quantity
|
||||
|
||||
def _get_non_delivery_lines(self):
|
||||
"""Override of `website_sale` to exclude delivery reward lines."""
|
||||
return super()._get_non_delivery_lines() - self._get_free_shipping_lines()
|
||||
|
||||
def _get_free_shipping_lines(self):
|
||||
self.ensure_one()
|
||||
|
|
@ -185,7 +208,7 @@ class SaleOrder(models.Model):
|
|||
"""Remove coupons from abandonned ecommerce order."""
|
||||
ICP = self.env['ir.config_parameter']
|
||||
validity = ICP.get_param('website_sale_coupon.abandonned_coupon_validity', 4)
|
||||
validity = fields.Datetime.to_string(fields.datetime.now() - timedelta(days=int(validity)))
|
||||
validity = fields.Datetime.to_string(fields.Datetime.now() - timedelta(days=int(validity)))
|
||||
so_to_reset = self.env['sale.order'].search([
|
||||
('state', '=', 'draft'),
|
||||
('write_date', '<', validity),
|
||||
|
|
@ -196,20 +219,47 @@ class SaleOrder(models.Model):
|
|||
for so in so_to_reset:
|
||||
so._update_programs_and_rewards()
|
||||
|
||||
def _get_website_sale_extra_values(self):
|
||||
promo_code_success = self.get_promo_code_success_message(delete=False)
|
||||
promo_code_error = self.get_promo_code_error(delete=False)
|
||||
def _get_claimable_and_showable_rewards(self):
|
||||
self.ensure_one()
|
||||
res = self._get_claimable_rewards()
|
||||
loyality_cards = self.env['loyalty.card'].search([
|
||||
('partner_id', '=', self.partner_id.id),
|
||||
('program_id', 'any', self._get_program_domain()),
|
||||
'|',
|
||||
('program_id.trigger', '=', 'with_code'),
|
||||
'&', ('program_id.trigger', '=', 'auto'), ('program_id.applies_on', '=', 'future'),
|
||||
])
|
||||
total_is_zero = self.currency_id.is_zero(self.amount_total)
|
||||
global_discount_reward = self._get_applied_global_discount()
|
||||
for coupon in loyality_cards:
|
||||
points = self._get_real_points_for_coupon(coupon)
|
||||
for reward in coupon.program_id.reward_ids - self.order_line.reward_id:
|
||||
if (
|
||||
reward.is_global_discount
|
||||
and global_discount_reward
|
||||
and self._best_global_discount_already_applied(global_discount_reward, reward)
|
||||
):
|
||||
continue
|
||||
if reward.reward_type == 'discount' and total_is_zero:
|
||||
continue
|
||||
if coupon.expiration_date and coupon.expiration_date < fields.Date.today():
|
||||
continue
|
||||
if points >= reward.required_points:
|
||||
if coupon in res:
|
||||
res[coupon] |= reward
|
||||
else:
|
||||
res[coupon] = reward
|
||||
return res
|
||||
|
||||
return {
|
||||
'promo_code_success': promo_code_success,
|
||||
'promo_code_error': promo_code_error,
|
||||
}
|
||||
def _cart_find_product_line(self, *args, **kwargs):
|
||||
# Filter out reward lines, they shouldn't be modified by standard _cart_add logic.
|
||||
# This kind of lines is handled by _update_programs_and_rewards and _auto_apply_rewards.
|
||||
return super()._cart_find_product_line(*args, **kwargs).filtered(
|
||||
lambda sol: not sol.is_reward_line
|
||||
)
|
||||
|
||||
def _cart_find_product_line(self, product_id, line_id=None, **kwargs):
|
||||
""" Override to filter out reward lines from the cart lines.
|
||||
|
||||
These are handled by the _update_programs_and_rewards and _auto_apply_rewards methods.
|
||||
"""
|
||||
lines = super()._cart_find_product_line(product_id, line_id, **kwargs)
|
||||
lines = lines.filtered(lambda l: not l.is_reward_line) if not line_id else lines
|
||||
return lines
|
||||
def _recompute_cart(self):
|
||||
"""Recompute cart with loyalty programs and rewards applied."""
|
||||
self._update_programs_and_rewards()
|
||||
self._auto_apply_rewards()
|
||||
super()._recompute_cart()
|
||||
|
|
|
|||
|
|
@ -1,16 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class SaleOrderLine(models.Model):
|
||||
_inherit = 'sale.order.line'
|
||||
|
||||
def _get_line_header(self):
|
||||
if self.is_reward_line:
|
||||
return self.name
|
||||
return super()._get_line_header()
|
||||
|
||||
def _show_in_cart(self):
|
||||
# Hide discount lines from website_order_line, see `order._compute_website_order_line`
|
||||
return self.reward_id.reward_type != 'discount' and super()._show_in_cart()
|
||||
|
||||
def _is_reorder_allowed(self):
|
||||
# Hide all types of rewards from reorder
|
||||
return not self.reward_id and super()._is_reorder_allowed()
|
||||
|
||||
def unlink(self):
|
||||
if self.env.context.get('website_sale_loyalty_delete', False):
|
||||
disabled_rewards_per_order = defaultdict(lambda: self.env['loyalty.reward'])
|
||||
|
|
@ -20,3 +30,17 @@ class SaleOrderLine(models.Model):
|
|||
for order, rewards in disabled_rewards_per_order.items():
|
||||
order.disabled_auto_rewards += rewards
|
||||
return super().unlink()
|
||||
|
||||
def _should_show_strikethrough_price(self):
|
||||
""" Override of `website_sale` to hide the strikethrough price for rewards. """
|
||||
return super()._should_show_strikethrough_price() and not self.is_reward_line
|
||||
|
||||
def _is_sellable(self):
|
||||
"""Override of `website_sale` to flag reward lines as not sellable.
|
||||
|
||||
:return: Whether the line is sellable or not.
|
||||
:rtype: bool
|
||||
"""
|
||||
return super()._is_sellable() and (
|
||||
not self.is_reward_line or self.reward_id.reward_type == 'product'
|
||||
)
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 3 KiB |
|
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="98.162%" x2="0%" y1="1.838%" y2="100%"><stop offset="0%" stop-color="#797DA5"/><stop offset="50.799%" stop-color="#6D7194"/><stop offset="100%" stop-color="#626584"/></linearGradient><path id="d" d="M50 31.035a3.5 3.5 0 1 0 0 6.93v3.06a1.633 1.633 0 0 1-1.588 1.286L26.974 43l.998 4h18.955c.998 0 .998 2 0 2h-20.95L19.99 25h-1.996v1c0 .667-.332 1-.997 1S16 26.667 16 26v-2c.066-.667.398-1 .998-1h3.99c.516 0 .848.333.998 1l.998 3.281 25.428.037c1.045 0 1.588.761 1.588 2.018v1.7zM45.43 55a2.497 2.497 0 0 1-2.493-2.5c0-1.38 1.116-2.5 2.494-2.5a2.497 2.497 0 0 1 2.494 2.5c0 1.38-1.117 2.5-2.494 2.5zm-18.955 0a2.497 2.497 0 0 1-2.494-2.5c0-1.38 1.117-2.5 2.494-2.5a2.497 2.497 0 0 1 2.495 2.5c0 1.38-1.117 2.5-2.495 2.5zm12.7-24.996a.51.51 0 0 0-.409.2l-7.668 9.056c-.233.31.004.738.41.738l.696-.002a.51.51 0 0 0 .409-.2l7.63-9.056c.234-.312-.005-.74-.41-.738l-.658.002zm-5.841 4.371c1.29 0 2.334-.979 2.334-2.188 0-1.208-1.044-2.187-2.334-2.187S31 30.979 31 32.188c0 1.208 1.044 2.187 2.334 2.187zm0-3.125c.552 0 1 .42 1 .938 0 .517-.448.937-1 .937s-1-.42-1-.938c0-.517.448-.937 1-.937zm4.668 4.375c-1.29 0-2.334.979-2.334 2.188 0 1.208 1.044 2.187 2.334 2.187s2.334-.979 2.334-2.188c0-1.208-1.044-2.187-2.334-2.187zm0 3.125c-.553 0-1-.42-1-.938 0-.517.447-.937 1-.937.552 0 1 .42 1 .938 0 .517-.448.937-1 .937z"/><path id="e" d="M50 30a3 3 0 0 0 0 6v3.025a1.633 1.633 0 0 1-1.588 1.286L26.974 41l.998 4h18.955c.998 0 .998 2 0 2h-20.95L19.99 23h-1.996v1c0 .667-.332 1-.997 1S16 24.667 16 24v-2c.066-.667.398-1 .998-1h3.99c.516 0 .848.333.998 1l.998 3.281 25.428.037c1.045 0 1.588.761 1.588 2.018V30zm-4.57 23a2.497 2.497 0 0 1-2.493-2.5c0-1.38 1.116-2.5 2.494-2.5a2.497 2.497 0 0 1 2.494 2.5c0 1.38-1.117 2.5-2.494 2.5zm-18.955 0a2.497 2.497 0 0 1-2.494-2.5c0-1.38 1.117-2.5 2.494-2.5a2.497 2.497 0 0 1 2.495 2.5c0 1.38-1.117 2.5-2.495 2.5zM48 26a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm0 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-8.825-8.996a.51.51 0 0 0-.409.2l-7.668 9.056c-.233.31.004.738.41.738l.696-.002a.51.51 0 0 0 .409-.2l7.63-9.056c.234-.312-.005-.74-.41-.738l-.658.002zm-5.841 4.371c1.29 0 2.334-.979 2.334-2.188 0-1.208-1.044-2.187-2.334-2.187S31 28.979 31 30.188c0 1.208 1.044 2.187 2.334 2.187zm0-3.125c.552 0 1 .42 1 .938 0 .517-.448.937-1 .937s-1-.42-1-.938c0-.517.448-.937 1-.937zm4.668 4.375c-1.29 0-2.334.979-2.334 2.188 0 1.208 1.044 2.187 2.334 2.187s2.334-.979 2.334-2.188c0-1.208-1.044-2.187-2.334-2.187zm0 3.125c-.553 0-1-.42-1-.938 0-.517.447-.937 1-.937.552 0 1 .42 1 .938 0 .517-.448.937-1 .937z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M33.317 69H4c-2 0-4-1-4-4V38.29l16.258-16.95L21 21l2 5h26.583l.371 3.987-3.862 4.883 3.764 1.445-.11 3.27L45.076 45H47l.507 1.61-1.993 1.943 1.815 3.434L33.317 69z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
|
||||
<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="M17.142 20.864a4 4 0 0 1 4.899-2.828l11.59 3.106a4 4 0 0 1 2.83 4.899l-3.107 11.59a4 4 0 0 1-4.899 2.83l-11.59-3.107a4 4 0 0 1-2.83-4.899l3.107-11.59Z" fill="#fff"/><path d="M23.135 28.615A2.828 2.828 0 1 1 26.28 26.8l3.3-1.906c.492-.284 1.056-.23 1.258.122l.919 1.59-5.188 2.996a2.828 2.828 0 1 1-2.726 1.574l-3.666 2.116c-.492.284-1.055.23-1.258-.122L18 31.58l5.135-2.965Z" fill="#F9464C"/></svg>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -0,0 +1,33 @@
|
|||
import { patch } from '@web/core/utils/patch';
|
||||
import { Checkout } from '@website_sale/interactions/checkout';
|
||||
|
||||
patch(Checkout.prototype, {
|
||||
/**
|
||||
* @override method from `@website_sale/interactions/checkout`
|
||||
*/
|
||||
_updateCartSummary(result, targetEl) {
|
||||
super._updateCartSummary(...arguments);
|
||||
if (result.amount_delivery_discounted) {
|
||||
// Update discount of the order
|
||||
const cart_summary_shipping_reward = targetEl.querySelector(
|
||||
'[data-reward-type="shipping"]'
|
||||
);
|
||||
if (cart_summary_shipping_reward) {
|
||||
cart_summary_shipping_reward.innerHTML = result.amount_delivery_discounted;
|
||||
}
|
||||
}
|
||||
if (result.discount_reward_amounts) {
|
||||
const cart_summary_discount_rewards = targetEl.querySelectorAll(
|
||||
'[data-reward-type=discount]'
|
||||
);
|
||||
if (cart_summary_discount_rewards.length !== result.discount_reward_amounts.length) {
|
||||
// refresh cart summary to sync number of discount items
|
||||
location.reload();
|
||||
} else {
|
||||
cart_summary_discount_rewards.forEach(
|
||||
(el, i) => (el.innerHTML = result.discount_reward_amounts[i])
|
||||
);
|
||||
}
|
||||
}
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
import { Interaction } from "@web/public/interaction";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
export class CouponToaster extends Interaction {
|
||||
static selector = ".coupon-message";
|
||||
|
||||
start() {
|
||||
let options = {};
|
||||
const titleEl = this.el.querySelector(".coupon-message-title");
|
||||
const contentEl = this.el.querySelector(".coupon-message-content");
|
||||
let message = null;
|
||||
|
||||
if (contentEl) {
|
||||
message = contentEl.innerHTML;
|
||||
if (titleEl) {
|
||||
Object.assign(options, { title: titleEl.innerHTML });
|
||||
}
|
||||
} else if (titleEl) {
|
||||
message = titleEl.innerHTML;
|
||||
}
|
||||
|
||||
if (this.el.classList.contains("coupon-info-message")) {
|
||||
this.services.notification.add(message, Object.assign({ type: "success" }, options));
|
||||
} else if (this.el.classList.contains("coupon-error-message")) {
|
||||
this.services.notification.add(message, Object.assign({ type: "danger" }, options));
|
||||
} else if (this.el.classList.contains("coupon-warning-message")) {
|
||||
this.services.notification.add(message, Object.assign({ type: "warning" }, options));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
registry
|
||||
.category("public.interactions")
|
||||
.add("website_sale_loyalty.coupon_toaster", CouponToaster);
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
import { Interaction } from "@web/public/interaction";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
import { browser } from "@web/core/browser/browser";
|
||||
|
||||
export class GiftCardCopy extends Interaction {
|
||||
static selector = ".o_purchased_gift_card .copy-to-clipboard";
|
||||
dynamicContent = {
|
||||
_root: { "t-on-click": this.onClick },
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {MouseEvent} ev
|
||||
*/
|
||||
onClick(ev) {
|
||||
const textValue = ev.target.dataset.clipboardText;
|
||||
browser.navigator.clipboard.writeText(textValue);
|
||||
}
|
||||
}
|
||||
|
||||
registry
|
||||
.category("public.interactions")
|
||||
.add("website_sale_loyalty.gift_card_copy", GiftCardCopy);
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import publicWidget from 'web.public.widget';
|
||||
import {registry} from "@web/core/registry";
|
||||
|
||||
const CouponToasterWidget = publicWidget.Widget.extend({
|
||||
start() {
|
||||
let options = {};
|
||||
const $content = this.$('.coupon-message-content');
|
||||
const $title = this.$('.coupon-message-title');
|
||||
|
||||
if ($content.length) {
|
||||
Object.assign(options, {message: $content[0].innerHTML});
|
||||
}
|
||||
if ($title.length) {
|
||||
Object.assign(options, {title: $title[0].innerHTML});
|
||||
}
|
||||
|
||||
if (this.$el.hasClass('coupon-info-message')) {
|
||||
this.displayNotification(Object.assign({type: 'success'}, options));
|
||||
} else if (this.$el.hasClass('coupon-error-message')) {
|
||||
this.displayNotification(Object.assign({type: 'danger'}, options));
|
||||
} else if (this.$el.hasClass('coupon-warning-message')) {
|
||||
this.displayNotification(Object.assign({type: 'warning'}, options));
|
||||
}
|
||||
|
||||
return this._super(...arguments);
|
||||
},
|
||||
});
|
||||
|
||||
registry.category("public_root_widgets").add("CouponToasterWidget", {
|
||||
Widget: CouponToasterWidget,
|
||||
selector: '.coupon-message',
|
||||
});
|
||||
|
||||
export default CouponToasterWidget;
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
<templates>
|
||||
|
||||
<t t-inherit="loyalty.portal_loyalty_card_dialog" t-inherit-mode="extension">
|
||||
<div name="history_lines" position="after">
|
||||
<div
|
||||
t-if="props.program.program_type == 'loyalty'"
|
||||
t-foreach="props.rewards"
|
||||
t-as="reward"
|
||||
t-key="reward_index"
|
||||
class="mb-2 mt-2"
|
||||
>
|
||||
<div class="d-flex border rounded align-items-center justify-content-center p-2">
|
||||
<div class="flex-fill fs-6">
|
||||
<t t-out="reward.description"/>
|
||||
</div>
|
||||
<span class="text-primary" t-out="reward.points"/>
|
||||
</div>
|
||||
</div>
|
||||
<div t-if="props.rewards.length > 0" class="d-flex justify-content-center">
|
||||
<a
|
||||
t-if="props.program.program_type == 'loyalty'"
|
||||
type="button"
|
||||
href="/shop"
|
||||
class="btn btn-primary"
|
||||
>
|
||||
Claim
|
||||
</a>
|
||||
</div>
|
||||
<div
|
||||
t-if="props.program.program_type == 'ewallet'
|
||||
and props.program.trigger_products.length"
|
||||
>
|
||||
<form
|
||||
method="post"
|
||||
action="/wallet/top_up"
|
||||
class="d-flex w-75 w-md-50 m-auto gap-1"
|
||||
>
|
||||
<input type="hidden" name="csrf_token" t-att-value="csrf_token"/>
|
||||
<select name="trigger_product_id" class="form-select">
|
||||
<t
|
||||
t-foreach="props.program.trigger_products"
|
||||
t-as="product"
|
||||
t-key="product_index"
|
||||
>
|
||||
<option t-att-value="product.id">
|
||||
<t t-esc="product.total_price"/>
|
||||
</option>
|
||||
</t>
|
||||
</select>
|
||||
<button type="submit" class="btn btn-primary text-nowrap">Top Up</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import publicWidget from 'web.public.widget';
|
||||
|
||||
publicWidget.registry.WebsiteSaleGiftCardCopy = publicWidget.Widget.extend({
|
||||
selector: '.o_purchased_gift_card',
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
start: function () {
|
||||
new ClipboardJS(this.$el.find('.copy-to-clipboard')[0]);
|
||||
}
|
||||
});
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates xml:space="preserve">
|
||||
|
||||
<t t-name="website_sale_loyalty.couponOption">
|
||||
<BuilderRow label.translate="Show Discount in Subtotal">
|
||||
<BuilderCheckbox action="'websiteConfig'" actionParam="{views: ['website_sale_loyalty.cart_discount']}"/>
|
||||
</BuilderRow>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
import { Plugin } from "@html_editor/plugin";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { BaseOptionComponent } from "@html_builder/core/utils";
|
||||
|
||||
export class CouponOption extends BaseOptionComponent {
|
||||
static template = "website_sale_loyalty.couponOption";
|
||||
static selector = "main:has(.oe_website_sale .wizard)";
|
||||
static title = _t("Coupon Snippet Options");
|
||||
static groups = ["website.group_website_designer"];
|
||||
static editableOnly = false;
|
||||
}
|
||||
|
||||
class CouponOptionPlugin extends Plugin {
|
||||
static id = "couponOption";
|
||||
resources = {
|
||||
builder_options: [CouponOption],
|
||||
};
|
||||
}
|
||||
|
||||
registry.category("website-plugins").add(CouponOptionPlugin.id, CouponOptionPlugin);
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
import { registry } from "@web/core/registry";
|
||||
import * as tourUtils from '@website_sale/js/tours/tour_utils';
|
||||
|
||||
registry.category("web_tour.tours").add('apply_discount_code_program_multi_rewards', {
|
||||
url: '/shop?search=Super%20Chair',
|
||||
steps: () => [
|
||||
{
|
||||
trigger: ".oe_search_found:not(:visible)",
|
||||
},
|
||||
{
|
||||
content: 'select Super Chair',
|
||||
trigger: '.oe_product_cart a:contains("Super Chair")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'Add Super Chair into cart',
|
||||
trigger: 'a:contains(Add to cart)',
|
||||
run: "click",
|
||||
},
|
||||
tourUtils.goToCart(),
|
||||
{
|
||||
trigger: "h4:contains(order summary)",
|
||||
},
|
||||
{
|
||||
trigger: 'form[name="coupon_code"]',
|
||||
},
|
||||
{
|
||||
content: 'insert discount code',
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: "edit 12345",
|
||||
},
|
||||
{
|
||||
content: 'validate the promo code',
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'check reward',
|
||||
trigger: '.alert:contains("10% on Super Chair")',
|
||||
},
|
||||
{
|
||||
content: 'claim reward',
|
||||
trigger: '.alert:contains("10% on Super Chair") .btn:contains("Claim")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "check claimed reward",
|
||||
trigger:
|
||||
"#cart_products.js_cart_lines .o_cart_product h6:contains(10% on Super Chair)",
|
||||
},
|
||||
// Try to reapply the same promo code
|
||||
{
|
||||
trigger: 'form[name="coupon_code"]',
|
||||
},
|
||||
{
|
||||
content: 'insert discount code',
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: "edit 12345",
|
||||
},
|
||||
{
|
||||
content: 'validate the promo code',
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'check refused message',
|
||||
trigger: '.alert-danger:contains("This promo code is already applied")',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
import { registry } from "@web/core/registry";
|
||||
import * as wsTourUtils from "@website_sale/js/tours/tour_utils";
|
||||
|
||||
registry.category("web_tour.tours").add("shop_sale_ewallet", {
|
||||
url: "/shop",
|
||||
steps: () => [
|
||||
// Add a $50 gift card to the order
|
||||
...wsTourUtils.addToCart({ productName: "TEST - Gift Card", expectUnloadPage: true }),
|
||||
wsTourUtils.goToCart(),
|
||||
{
|
||||
trigger: 'button[name="o_loyalty_claim"]:contains("Use")',
|
||||
async run(helpers) {
|
||||
const rewards = document.querySelectorAll('form[name="claim_reward"]');
|
||||
if (rewards.length === 1) {
|
||||
await helpers.click();
|
||||
} else {
|
||||
console.error(`Expected 1 claimable reward, got: ${rewards.length}`);
|
||||
}
|
||||
},
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "Checkout",
|
||||
trigger: 'a[name="website_sale_main_button"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "Confirm Order",
|
||||
trigger: 'button[name="o_payment_submit_button"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
trigger: 'div h3:contains("Thank you for your order.")'
|
||||
},
|
||||
{
|
||||
trigger: 'a[href="/shop/cart"]',
|
||||
run: function () {
|
||||
const cartQuantity = document.querySelector(".my_cart_quantity");
|
||||
if (cartQuantity.textContent !== "0") {
|
||||
console.error(
|
||||
"cart should be empty and reset after an order is paid using ewallet"
|
||||
);
|
||||
}
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
|
|
@ -1,90 +1,49 @@
|
|||
/** @odoo-module **/
|
||||
import { registry } from "@web/core/registry";
|
||||
import * as tourUtils from "@website_sale/js/tours/tour_utils";
|
||||
|
||||
import tour from 'web_tour.tour';
|
||||
import tourUtils from 'website_sale.tour_utils';
|
||||
|
||||
tour.register('shop_sale_gift_card', {
|
||||
test: true,
|
||||
url: '/shop?search=Small%20Drawer'
|
||||
},
|
||||
[
|
||||
registry.category("web_tour.tours").add('shop_sale_gift_card', {
|
||||
url: '/shop',
|
||||
steps: () => [
|
||||
// Add a small drawer to the order (50$)
|
||||
{
|
||||
content: 'select Small Drawer',
|
||||
extra_trigger: '.oe_search_found',
|
||||
trigger: '.oe_product_cart a:contains("TEST - Small Drawer")',
|
||||
},
|
||||
{
|
||||
content: 'Add Small Drawer into cart',
|
||||
trigger: 'a:contains(ADD TO CART)',
|
||||
},
|
||||
...tourUtils.addToCart({ productName: "TEST - Small Drawer", expectUnloadPage: true }),
|
||||
tourUtils.goToCart(),
|
||||
{
|
||||
content: 'Click on "I have a promo code"',
|
||||
extra_trigger: '#cart_products',
|
||||
trigger: '.show_coupon',
|
||||
},
|
||||
{
|
||||
content: 'insert gift card code',
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: 'text GIFT_CARD'
|
||||
run: "edit GIFT_CARD",
|
||||
},
|
||||
{
|
||||
content: 'validate the gift card',
|
||||
trigger: 'form[name="coupon_code"] .a-submit',
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'check gift card line',
|
||||
trigger: '.td-product_name:contains("PAY WITH GIFT CARD")',
|
||||
trigger: "#cart_products div>h6:contains(PAY WITH GIFT CARD)",
|
||||
},
|
||||
{
|
||||
content: 'Click on "I have a promo code"',
|
||||
trigger: '.show_coupon',
|
||||
},
|
||||
{
|
||||
content: 'insert gift card code',
|
||||
extra_trigger: 'form[name="coupon_code"]',
|
||||
content: "Insert promo",
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: 'text 10PERCENT'
|
||||
run: "edit 10PERCENT",
|
||||
},
|
||||
{
|
||||
content: 'validate the gift card',
|
||||
trigger: 'form[name="coupon_code"] .a-submit',
|
||||
content: "Validate the promo",
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'check gift card amount',
|
||||
trigger: '.oe_currency_value:contains("-45.00")',
|
||||
trigger: '.oe_website_sale .oe_cart',
|
||||
run: function () {}, // it's a check
|
||||
content: "Check promo",
|
||||
trigger: "#cart_products div>h6:contains(10% on your order)",
|
||||
},
|
||||
{
|
||||
content: 'go to shop',
|
||||
trigger: 'a:contains("Shop")',
|
||||
},
|
||||
{
|
||||
content: "type Gift Card in search",
|
||||
trigger: 'form input[name="search"]',
|
||||
run: "text Gift Card",
|
||||
},
|
||||
{
|
||||
content: "start search",
|
||||
trigger: 'form:has(input[name="search"]) .oe_search_button',
|
||||
},
|
||||
{
|
||||
content: "select Gift Card",
|
||||
extra_trigger: '.oe_search_found', // Wait to be on search results or it sometimes throws concurent error (sent search form + click on product on /shop)
|
||||
trigger: '.oe_product_cart a:containsExact("TEST - Gift Card")',
|
||||
},
|
||||
{
|
||||
content: "click on 'Add to Cart' button",
|
||||
trigger: "a:contains(ADD TO CART)",
|
||||
},
|
||||
tourUtils.goToCart({quantity: 2}),
|
||||
{
|
||||
content: 'check gift card amount',
|
||||
trigger: '.oe_currency_value:contains("-45.00")',
|
||||
trigger: '.oe_website_sale .oe_cart',
|
||||
run: function () {}, // it's a check
|
||||
content: "Click on Continue Shopping",
|
||||
trigger: "div.card-body a:contains(Continue shopping)",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
...tourUtils.addToCart({ productName: "TEST - Gift Card", expectUnloadPage: true }),
|
||||
tourUtils.goToCart({quantity: 2}),
|
||||
],
|
||||
);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,70 +1,68 @@
|
|||
/** @odoo-module **/
|
||||
import { rpc } from "@web/core/network/rpc";
|
||||
import { registry } from "@web/core/registry";
|
||||
import * as tourUtils from '@website_sale/js/tours/tour_utils';
|
||||
|
||||
import tour from 'web_tour.tour';
|
||||
import ajax from 'web.ajax';
|
||||
import tourUtils from 'website_sale.tour_utils';
|
||||
|
||||
tour.register('shop_sale_loyalty', {
|
||||
test: true,
|
||||
registry.category("web_tour.tours").add('shop_sale_loyalty', {
|
||||
url: '/shop?search=Small%20Cabinet',
|
||||
},
|
||||
[
|
||||
steps: () => [
|
||||
/* 1. Buy 1 Small Cabinet, enable coupon code & insert 10% code */
|
||||
{
|
||||
trigger: ".oe_search_found:not(:visible)",
|
||||
},
|
||||
{
|
||||
content: "select Small Cabinet",
|
||||
extra_trigger: '.oe_search_found',
|
||||
trigger: '.oe_product_cart a:contains("Small Cabinet")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "add 2 Small Cabinet into cart",
|
||||
trigger: '#product_details input[name="add_qty"]',
|
||||
run: "text 2",
|
||||
run: "edit 2",
|
||||
},
|
||||
{
|
||||
content: "click on 'Add to Cart' button",
|
||||
trigger: "a:contains(ADD TO CART)",
|
||||
trigger: "a:contains(Add to cart)",
|
||||
run: "click",
|
||||
},
|
||||
tourUtils.goToCart({quantity: 2}),
|
||||
{
|
||||
content: "click on 'I have a promo code'",
|
||||
extra_trigger: '.show_coupon',
|
||||
trigger: '.show_coupon',
|
||||
trigger: 'form[name="coupon_code"]',
|
||||
},
|
||||
{
|
||||
content: "insert promo code 'testcode'",
|
||||
extra_trigger: 'form[name="coupon_code"]',
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: "text testcode",
|
||||
run: "edit testcode",
|
||||
},
|
||||
{
|
||||
content: "validate the coupon",
|
||||
trigger: 'form[name="coupon_code"] .a-submit',
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "check reward product",
|
||||
trigger: '.td-product_name:contains("10.0% discount on total amount")',
|
||||
run: function () {}, // it's a check
|
||||
trigger: 'div>h6:contains("10.0% discount on total amount")',
|
||||
},
|
||||
{
|
||||
content: "check loyalty points",
|
||||
trigger: '.oe_website_sale_gift_card span:contains("372.03 Points")',
|
||||
run: function () {}, // it's a check
|
||||
trigger: '.oe_website_sale_gift_card strong[name="o_loyalty_points"]:contains("372.03")',
|
||||
},
|
||||
/* 2. Add some cabinet to get a free one, play with quantity */
|
||||
{
|
||||
content: "go to shop",
|
||||
trigger: '.td-product_name:contains("10.0% discount on total amount")',
|
||||
trigger: 'div>h6:contains("10.0% discount on total amount")',
|
||||
run: function () {
|
||||
ajax.jsonRpc('/web/dataset/call_kw', 'call', {
|
||||
rpc('/web/dataset/call_kw/account.tax/create', {
|
||||
model: 'account.tax',
|
||||
method: 'create',
|
||||
args: [{
|
||||
'name':'15% tax incl ' + _.now(),
|
||||
'name':'15% tax incl ' + new Date().getTime(),
|
||||
'amount': 15,
|
||||
}],
|
||||
kwargs: {},
|
||||
}).then(function (tax_id) {
|
||||
ajax.jsonRpc('/web/dataset/call_kw', 'call', {
|
||||
rpc('/web/dataset/call_kw/product.template/create', {
|
||||
model: 'product.template',
|
||||
method: 'create',
|
||||
args: [{
|
||||
|
|
@ -79,73 +77,54 @@ tour.register('shop_sale_loyalty', {
|
|||
});
|
||||
});
|
||||
},
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "type Taxed Product in search",
|
||||
trigger: 'form input[name="search"]',
|
||||
run: "text Taxed Product",
|
||||
},
|
||||
{
|
||||
content: "start search",
|
||||
trigger: 'form:has(input[name="search"]) .oe_search_button',
|
||||
},
|
||||
{
|
||||
content: "select Taxed Product",
|
||||
extra_trigger: '.oe_search_found', // Wait to be on search results or it sometimes throws concurent error (sent search form + click on product on /shop)
|
||||
trigger: '.oe_product_cart a:containsExact("Taxed Product")',
|
||||
},
|
||||
{
|
||||
content: "click on 'Add to Cart' button",
|
||||
trigger: "a:contains(ADD TO CART)",
|
||||
},
|
||||
...tourUtils.addToCart({ productName: "Taxed Product", expectUnloadPage: true }),
|
||||
tourUtils.goToCart({quantity: 3}),
|
||||
{
|
||||
trigger: ".oe_currency_value:contains(/74.00/):not(div[name='o_cart_total'])",
|
||||
},
|
||||
{
|
||||
content: "check reduction amount got recomputed and merged both discount lines into one only",
|
||||
extra_trigger: '.oe_currency_value:contains("-74.00"):not(#cart_total .oe_currency_value:contains("-74.00"))',
|
||||
trigger: '.oe_website_sale .oe_cart',
|
||||
run: function () {}, // it's a check
|
||||
},
|
||||
/* 3. Add some cabinet to get a free one, play with quantity */
|
||||
{
|
||||
content: "add one Small Cabinet",
|
||||
trigger: '#cart_products input.js_quantity',
|
||||
run: "text 3",
|
||||
run: "edit 3 && click body",
|
||||
},
|
||||
{
|
||||
content: "check reduction amount got recomputed when changing qty",
|
||||
trigger: '.oe_currency_value:contains("-106.00")',
|
||||
run: function () {}, // it's a check
|
||||
trigger: '.oe_currency_value:contains("- 106.00")',
|
||||
},
|
||||
{
|
||||
content: "add more Small Cabinet into cart",
|
||||
trigger: '#cart_products input.js_quantity',
|
||||
run: "text 4",
|
||||
run: "edit 4 && click body",
|
||||
},
|
||||
{
|
||||
content: "check free product is added",
|
||||
trigger: '#wrap:has(.td-product_name:contains("Free Product - Small Cabinet"))',
|
||||
run: function () {}, // it's a check
|
||||
trigger: '#wrap:has(div h6:contains("Free Product - Small Cabinet"))',
|
||||
},
|
||||
{
|
||||
content: "remove one cabinet from cart",
|
||||
trigger: '#cart_products input.js_quantity[value="4"]',
|
||||
run: "text 3",
|
||||
run: "edit 3 && click body",
|
||||
},
|
||||
{
|
||||
content: "check free product is removed",
|
||||
trigger: '#wrap:not(:has(.td-product_name:contains("Free Product - Small Cabinet")))',
|
||||
run: function () {}, // it's a check
|
||||
trigger: '#wrap:not(:has(div h6:contains("Free Product - Small Cabinet")))',
|
||||
},
|
||||
/* 4. Check /shop/payment does not break the `merged discount lines split per tax` (eg: with _compute_tax_id) */
|
||||
/* 4. Check /shop/payment does not break the `merged discount lines split per tax` (eg: with _compute_tax_ids) */
|
||||
{
|
||||
content: "go to checkout",
|
||||
trigger: 'a[href="/shop/checkout?express=1"]',
|
||||
},
|
||||
{
|
||||
content: "check total is unchanged once we land on payment page",
|
||||
extra_trigger: '#payment_method h3:contains("Pay with")',
|
||||
trigger: 'tr#order_total .oe_currency_value:contains("967.50")',
|
||||
run: function () {}, // it's a check
|
||||
trigger: 'a[href="/shop/checkout?try_skip_step=true"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
...tourUtils.assertCartAmounts({
|
||||
total: '967.50',
|
||||
}),
|
||||
]
|
||||
);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -0,0 +1,131 @@
|
|||
import { registry } from "@web/core/registry";
|
||||
import {
|
||||
addToCart,
|
||||
assertCartAmounts,
|
||||
confirmOrder,
|
||||
goToCart,
|
||||
goToCheckout,
|
||||
pay,
|
||||
waitForInteractionToLoad,
|
||||
} from "@website_sale/js/tours/tour_utils";
|
||||
|
||||
function assertRewardAmounts(rewards) {
|
||||
const steps = [];
|
||||
const currencyValue = `.oe_currency_value:visible`;
|
||||
for (const [reward, amount] of Object.entries(rewards)) {
|
||||
steps.push({
|
||||
content: `check if ${reward} reward is correct`,
|
||||
trigger: `[data-reward-type=${reward}] ${currencyValue}:text(${amount})`,
|
||||
});
|
||||
}
|
||||
return steps;
|
||||
}
|
||||
|
||||
function selectDelivery(provider) {
|
||||
return {
|
||||
content: `select ${provider} shipping`,
|
||||
trigger: `li[name=o_delivery_method]:contains(${provider}) input`,
|
||||
run: "click",
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
const webTours = registry.category("web_tour.tours");
|
||||
|
||||
webTours.add("check_shipping_discount", {
|
||||
url: "/shop?search=Plumbus",
|
||||
steps: () => [
|
||||
{
|
||||
content: "select Plumbus",
|
||||
trigger: '.oe_product a:contains("Plumbus")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "add 3 Plumbus into cart",
|
||||
trigger: '#product_details input[name="add_qty"]',
|
||||
run: "edit 3",
|
||||
},
|
||||
{
|
||||
content: "click on 'Add to Cart' button",
|
||||
trigger: '#product_detail form #add_to_cart',
|
||||
run: "click",
|
||||
},
|
||||
goToCart({ quantity: 3 }),
|
||||
goToCheckout(),
|
||||
waitForInteractionToLoad(),
|
||||
selectDelivery("delivery2"),
|
||||
...assertCartAmounts({
|
||||
delivery: "10.00", // delivery2 is $10, ignoring shipping discount
|
||||
total: "304.00", // $100 per Plumbus, plus discounted delivery
|
||||
}),
|
||||
...assertRewardAmounts({ shipping: "- 6.00" }),
|
||||
{
|
||||
content: "pay with eWallet",
|
||||
trigger: "form[name=claim_reward] button[name='o_loyalty_claim']:contains('Use')",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
...assertRewardAmounts({ discount: "- 304.00" }),
|
||||
waitForInteractionToLoad(),
|
||||
selectDelivery("delivery1"),
|
||||
...assertCartAmounts({ delivery: "5.00" }),
|
||||
...assertRewardAmounts({ discount: "- 300.00", shipping: "- 5.00" }),
|
||||
{
|
||||
content: "confirm shipping method",
|
||||
trigger: ".o_total_card a[name=website_sale_main_button]",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
...pay({ expectUnloadPage: true }),
|
||||
],
|
||||
});
|
||||
|
||||
webTours.add("update_shipping_after_discount", {
|
||||
url: "/shop",
|
||||
steps: () => [
|
||||
...addToCart({ productName: "Plumbus", expectUnloadPage: true }),
|
||||
goToCart(),
|
||||
{
|
||||
content: "use eWallet to check it doesn't impact `free_over` shipping",
|
||||
trigger: "button[name='o_loyalty_claim']:contains('Use')",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: "Check pay with eWallet is applied",
|
||||
trigger: ".o_cart_product [name=website_sale_cart_line_price]:contains(- 100.00)",
|
||||
},
|
||||
goToCheckout(),
|
||||
selectDelivery("delivery1"),
|
||||
...assertCartAmounts({
|
||||
total: "0.00", // $100 total is covered by eWallet
|
||||
delivery: "0.00", // $100 is over $75 `free_over` amount, so free shipping
|
||||
}),
|
||||
...assertRewardAmounts({ discount: "- 100.00" }),
|
||||
confirmOrder(),
|
||||
{
|
||||
content: "enter discount code",
|
||||
trigger: "form[name=coupon_code] input[name=promo]",
|
||||
run: "edit test-50pc",
|
||||
},
|
||||
{
|
||||
content: "apply discount code",
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
...assertCartAmounts({
|
||||
total: "0.00", // $50 total is covered by eWallet
|
||||
delivery: "5.00", // $50 is below $75 `free_over` amount, so no free shipping
|
||||
}),
|
||||
{
|
||||
content: "check discount code discount doesn't apply to shipping",
|
||||
trigger: '[data-reward-type=discount] .oe_currency_value:text(- 50.00)',
|
||||
},
|
||||
{
|
||||
content: "check eWallet discount applies to shipping ($50 for Plumbus + $5 for delivery)",
|
||||
trigger: '[data-reward-type=discount] .oe_currency_value:text(- 55.00)',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
import { registry } from "@web/core/registry";
|
||||
import * as wsTourUtils from "@website_sale/js/tours/tour_utils";
|
||||
|
||||
registry.category("web_tour.tours").add('shop_sale_loyalty_delivery', {
|
||||
url: '/shop',
|
||||
steps: () => [
|
||||
...wsTourUtils.addToCart({ productName: "Plumbus", expectUnloadPage: true }),
|
||||
wsTourUtils.goToCart(1),
|
||||
wsTourUtils.goToCheckout(),
|
||||
{
|
||||
content: "select delivery method 1",
|
||||
trigger: "li label:contains(delivery1)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: "Enter gift card code",
|
||||
trigger: "form[name='coupon_code'] input[name='promo']",
|
||||
run: "edit 123456",
|
||||
},
|
||||
{
|
||||
content: "click on 'Apply'",
|
||||
trigger: 'form[name="coupon_code"] button[type="submit"]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
wsTourUtils.confirmOrder(),
|
||||
...wsTourUtils.assertCartAmounts({
|
||||
total: '0.00',
|
||||
delivery: '5.00'
|
||||
}),
|
||||
]
|
||||
});
|
||||
|
|
@ -1,8 +1,12 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_apply_pending_coupon
|
||||
from . import test_ewallet
|
||||
from . import test_concurrent_promo_code
|
||||
from . import test_free_product_reward
|
||||
from . import test_sale_coupon_multiwebsite
|
||||
from . import test_shop_loyalty_payment
|
||||
from . import test_shop_multi_reward
|
||||
from . import test_shop_sale_coupon
|
||||
from . import test_website_sale_auto_invoice
|
||||
from . import test_website_sale_loyalty_delivery
|
||||
|
|
|
|||
|
|
@ -1,24 +1,23 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.tests import tagged, HttpCase
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.sale_loyalty.tests.common import TestSaleCouponNumbersCommon
|
||||
from odoo.addons.website.tools import MockRequest
|
||||
from odoo.addons.website_sale.tests.common import MockRequest, WebsiteSaleCommon
|
||||
from odoo.addons.website_sale_loyalty.controllers.cart import Cart
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestSaleCouponApplyPending(HttpCase, TestSaleCouponNumbersCommon):
|
||||
class TestSaleCouponApplyPending(TestSaleCouponNumbersCommon, WebsiteSaleCommon):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
self.WebsiteSaleController = WebsiteSale()
|
||||
|
||||
self.website = self.env['website'].browse(1)
|
||||
self.global_program = self.p1
|
||||
self.coupon_program = self.env['loyalty.program'].create({
|
||||
cls.global_program = cls.p1
|
||||
cls.coupon_program = cls.env['loyalty.program'].create({
|
||||
'name': 'One Free Product',
|
||||
'program_type': 'coupons',
|
||||
'rule_ids': [(0, 0, {
|
||||
|
|
@ -26,42 +25,75 @@ class TestSaleCouponApplyPending(HttpCase, TestSaleCouponNumbersCommon):
|
|||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'product',
|
||||
'reward_product_id': self.largeCabinet.id,
|
||||
'reward_product_id': cls.largeCabinet.id,
|
||||
})]
|
||||
})
|
||||
self.env['loyalty.generate.wizard'].with_context(active_id=self.coupon_program.id).create({
|
||||
cls.env['loyalty.generate.wizard'].with_context(active_id=cls.coupon_program.id).create({
|
||||
'coupon_qty': 1,
|
||||
'points_granted': 1,
|
||||
}).generate_coupons()
|
||||
self.coupon = self.coupon_program.coupon_ids[0]
|
||||
installed_modules = set(self.env['ir.module.module'].search([
|
||||
cls.coupon = cls.coupon_program.coupon_ids[0]
|
||||
installed_modules = set(cls.env['ir.module.module'].search([
|
||||
('state', '=', 'installed'),
|
||||
]).mapped('name'))
|
||||
for _ in http._generate_routing_rules(installed_modules, nodb_only=False):
|
||||
pass
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
|
||||
self.WebsiteSaleController = WebsiteSale()
|
||||
self.WebsiteSaleCartController = Cart()
|
||||
|
||||
def test_01_activate_coupon_with_existing_program(self):
|
||||
order = self.empty_order
|
||||
order = self.empty_cart
|
||||
self.env['product.pricelist.item'].search([]).unlink()
|
||||
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id, website_sale_current_pl=1) as request:
|
||||
self.WebsiteSaleController.cart_update_json(self.largeCabinet.id, set_qty=2)
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id) as request:
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.largeCabinet.product_tmpl_id,
|
||||
product_id=self.largeCabinet.id,
|
||||
quantity=2,
|
||||
)
|
||||
self.WebsiteSaleController.pricelist(self.global_program.rule_ids.code)
|
||||
self.assertEqual(order.amount_total, 576, "The order total should equal 576: 2*320 - 10% discount ")
|
||||
self.assertEqual(len(order.order_line), 2, "There should be 2 lines 1 for the product and 1 for the discount")
|
||||
self.assertEqual(
|
||||
order.amount_total,
|
||||
576,
|
||||
"The order total should equal 576: 2*320 - 10% discount "
|
||||
)
|
||||
self.assertEqual(
|
||||
len(order.order_line),
|
||||
2,
|
||||
"There should be 2 lines 1 for the product and 1 for the discount"
|
||||
)
|
||||
|
||||
self.WebsiteSaleController.activate_coupon(self.coupon.code)
|
||||
promo_code = request.session.get('pending_coupon_code')
|
||||
self.assertFalse(promo_code, "The promo code should be removed from the pending coupon dict")
|
||||
self.assertEqual(order.amount_total, 576, "The order total should equal 576: 2*320 - 0 (free product) - 10%")
|
||||
self.assertEqual(len(order.order_line), 3, "There should be 3 lines 1 for the product, 1 for the free product and 1 for the discount")
|
||||
self.assertFalse(
|
||||
promo_code,
|
||||
"The promo code should be removed from the pending coupon dict"
|
||||
)
|
||||
self.assertEqual(
|
||||
order.amount_total,
|
||||
576,
|
||||
"The order total should equal 576: 2*320 - 0 (free product) - 10%"
|
||||
)
|
||||
self.assertEqual(
|
||||
len(order.order_line),
|
||||
3,
|
||||
"There should be 3 lines 1 for the product, 1 for the free product and 1 for the discount"
|
||||
)
|
||||
|
||||
def test_02_pending_coupon_with_existing_program(self):
|
||||
order = self.empty_order
|
||||
order = self.empty_cart
|
||||
self.env['product.pricelist.item'].search([]).unlink()
|
||||
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id, website_sale_current_pl=1) as request:
|
||||
self.WebsiteSaleController.cart_update_json(self.largeCabinet.id, set_qty=1)
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id) as request:
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.largeCabinet.product_tmpl_id,
|
||||
product_id=self.largeCabinet.id,
|
||||
quantity=1,
|
||||
)
|
||||
self.WebsiteSaleController.pricelist(self.global_program.rule_ids.code)
|
||||
self.assertEqual(self.largeCabinet.lst_price, 320)
|
||||
cabinet_sol = order.order_line.filtered(lambda sol: sol.product_id == self.largeCabinet)
|
||||
|
|
@ -78,12 +110,31 @@ class TestSaleCouponApplyPending(HttpCase, TestSaleCouponNumbersCommon):
|
|||
promo_code = request.session.get('pending_coupon_code')
|
||||
self.assertEqual(order.amount_tax, 0)
|
||||
self.assertEqual(order.cart_quantity, 1)
|
||||
self.assertEqual(order.amount_total, 288, "The order total should still equal 288 as the coupon for free product can't be applied since it requires 2 min qty")
|
||||
self.assertEqual(promo_code, self.coupon.code, "The promo code should be set in the pending coupon dict as it couldn't be applied, we save it for later reuse")
|
||||
self.assertEqual(
|
||||
order.amount_total,
|
||||
288,
|
||||
"The order total should still equal 288 as the coupon for free product can't be applied since it requires 2 min qty"
|
||||
)
|
||||
self.assertEqual(
|
||||
promo_code,
|
||||
self.coupon.code,
|
||||
"The promo code should be set in the pending coupon dict as it couldn't be applied, we save it for later reuse"
|
||||
)
|
||||
|
||||
self.WebsiteSaleController.cart_update_json(self.largeCabinet.id, add_qty=1)
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.largeCabinet.product_tmpl_id,
|
||||
product_id=self.largeCabinet.id,
|
||||
quantity=1,
|
||||
)
|
||||
promo_code = request.session.get('pending_coupon_code')
|
||||
self.assertFalse(promo_code, "The promo code should be removed from the pending coupon dict as it should have been applied")
|
||||
self.assertFalse(
|
||||
promo_code,
|
||||
"The promo code should be removed from the pending coupon dict as it should have been applied"
|
||||
)
|
||||
self.assertEqual(order.amount_tax, 0)
|
||||
self.assertEqual(order.cart_quantity, 2)
|
||||
self.assertEqual(order.amount_total, 576, "The order total should equal 576: 2*320 - 0 (free product) - 10%")
|
||||
self.assertEqual(
|
||||
order.amount_total,
|
||||
576,
|
||||
"The order total should equal 576: 2*320 - 0 (free product) - 10%"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,133 @@
|
|||
import threading
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
from psycopg2 import OperationalError
|
||||
|
||||
from odoo import SUPERUSER_ID, api
|
||||
from odoo.modules.registry import Registry
|
||||
from odoo.tests import tagged
|
||||
from odoo.tests.common import BaseCase, get_db_name
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
|
||||
@tagged('-standard', '-at_install', 'post_install', 'database_breaking')
|
||||
class TestConcurrencyPromoCode(BaseCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.registry = Registry(get_db_name())
|
||||
|
||||
with cls.registry.cursor() as cr:
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
|
||||
cls.promo_code = "AZERTY123456"
|
||||
cls.promo_code_program = env['loyalty.program'].create({
|
||||
'name': 'FREE FOR ONE',
|
||||
'program_type': 'promo_code',
|
||||
'limit_usage': True,
|
||||
'max_usage': 1,
|
||||
'rule_ids': [(0, 0, {
|
||||
'minimum_qty': 0,
|
||||
'code': cls.promo_code,
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount_mode': 'percent',
|
||||
'discount_applicability': 'order',
|
||||
'discount': 100.0,
|
||||
})]
|
||||
})
|
||||
|
||||
cls.partner_1 = env['res.partner'].create([{
|
||||
'name': 'Mitchel Notadmin',
|
||||
'email': 'mitch.el@example.com',
|
||||
}])
|
||||
cls.partner_2 = env['res.partner'].create({
|
||||
'name': 'John Smith',
|
||||
'email': 'john.smith@example.com',
|
||||
})
|
||||
|
||||
cls.product = env['product.product'].create({
|
||||
'name': "TEST PRODUCT",
|
||||
'standard_price': 100,
|
||||
})
|
||||
|
||||
cls.order_partner_1 = env['sale.order'].create({'partner_id': cls.partner_1.id})
|
||||
cls.order_partner_2 = env['sale.order'].create({'partner_id': cls.partner_2.id})
|
||||
|
||||
cls.order_lines = env['sale.order.line'].create([{
|
||||
'order_id': cls.order_partner_1.id,
|
||||
'product_id': cls.product.id,
|
||||
'product_uom_qty': 1,
|
||||
}, {
|
||||
'order_id': cls.order_partner_2.id,
|
||||
'product_id': cls.product.id,
|
||||
'product_uom_qty': 3,
|
||||
},
|
||||
])
|
||||
|
||||
cls._released_signal = threading.Event()
|
||||
|
||||
cls.envs = [
|
||||
api.Environment(cls.registry.cursor(), SUPERUSER_ID, {}),
|
||||
api.Environment(cls.registry.cursor(), SUPERUSER_ID, {}),
|
||||
]
|
||||
cr.commit()
|
||||
|
||||
def reset():
|
||||
for env in cls.envs:
|
||||
env.cr.close()
|
||||
|
||||
with cls.registry.cursor() as cr:
|
||||
cr.execute("""
|
||||
DELETE FROM loyalty_card WHERE program_id = %(program_id)s;
|
||||
DELETE FROM loyalty_rule WHERE program_id = %(program_id)s;
|
||||
DELETE FROM loyalty_reward WHERE program_id = %(program_id)s;
|
||||
DELETE FROM loyalty_program WHERE id = %(program_id)s;
|
||||
DELETE FROM sale_order_line WHERE id IN %(sol_ids)s;
|
||||
DELETE FROM sale_order WHERE id IN %(so_ids)s;
|
||||
DELETE FROM res_partner WHERE id IN %(partner_ids)s;
|
||||
DELETE FROM product_product WHERE id = %(product_id)s;
|
||||
""", {
|
||||
'program_id': cls.promo_code_program.id,
|
||||
'sol_ids': tuple(cls.order_lines.ids),
|
||||
'so_ids': (cls.order_partner_1.id, cls.order_partner_2.id),
|
||||
'partner_ids': (cls.partner_1.id, cls.partner_2.id),
|
||||
'product_id': cls.product.id,
|
||||
})
|
||||
cls.addClassCleanup(reset)
|
||||
|
||||
@mute_logger('odoo.sql_db')
|
||||
def test_lock_concurrent_promo_code(self):
|
||||
""" Test that two cursors cannot lock the same row simultaneously """
|
||||
|
||||
# A simple barrier to make sure threads start roughly at the same time
|
||||
start_barrier = threading.Barrier(2)
|
||||
|
||||
def run(env, order_id):
|
||||
env.cr.execute("SELECT id FROM loyalty_rule WHERE code = %s", (self.promo_code,))
|
||||
self.assertTrue(env.cr.fetchone())
|
||||
order = env['sale.order'].browse(order_id)
|
||||
|
||||
# Wait for the other threads to be ready
|
||||
start_barrier.wait()
|
||||
|
||||
try:
|
||||
order._try_apply_code(self.promo_code)
|
||||
self._released_signal.wait(timeout=20) # Hold the lock for a moment to ensure overlap
|
||||
return True
|
||||
|
||||
except OperationalError: # This catches the Postgres error when a row is locked
|
||||
self._released_signal.set() # Signal to release the lock
|
||||
return False
|
||||
|
||||
with ThreadPoolExecutor(max_workers=2) as executor:
|
||||
future_1 = executor.submit(run, self.envs[0], self.order_partner_1.id)
|
||||
future_2 = executor.submit(run, self.envs[1], self.order_partner_2.id)
|
||||
|
||||
# One should go through, the other should be locked (does not matter
|
||||
# which thread)
|
||||
res_1 = future_1.result(timeout=3)
|
||||
res_2 = future_2.result(timeout=3)
|
||||
self.assertNotEqual(res_1, res_2)
|
||||
|
|
@ -0,0 +1,70 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import HttpCase, tagged
|
||||
|
||||
from odoo.addons.website_sale.tests.common import MockRequest, WebsiteSaleCommon
|
||||
from odoo.addons.website_sale_loyalty.controllers.cart import Cart
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestEwallet(HttpCase, WebsiteSaleCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.WebsiteSaleController = WebsiteSale()
|
||||
cls.WebsiteSaleCartController = Cart()
|
||||
|
||||
cls.product.write({'taxes_id': [Command.clear()]})
|
||||
|
||||
cls.topup = cls.env['product.product'].create({
|
||||
'name': 'Ewallet Top up',
|
||||
'list_price': 50.0,
|
||||
'website_published': True,
|
||||
})
|
||||
|
||||
cls.ewallet_program = cls.env['loyalty.program'].create([{
|
||||
'name': 'E-wallet Card Program',
|
||||
'program_type': 'ewallet',
|
||||
'trigger': 'auto',
|
||||
'applies_on': 'future',
|
||||
'rule_ids': [Command.create({
|
||||
'reward_point_mode': 'money',
|
||||
'reward_point_amount': 10,
|
||||
'product_ids': cls.topup,
|
||||
})],
|
||||
'reward_ids': [Command.create({
|
||||
'discount_mode': 'per_point',
|
||||
'discount': 1,
|
||||
'discount_applicability': 'order',
|
||||
})],
|
||||
}])
|
||||
installed_modules = set(cls.env['ir.module.module'].search([
|
||||
('state', '=', 'installed'),
|
||||
]).mapped('name'))
|
||||
for _ in http._generate_routing_rules(installed_modules, nodb_only=False):
|
||||
pass
|
||||
|
||||
def test_ewallet(self):
|
||||
self.env['loyalty.generate.wizard'].create({
|
||||
'program_id': self.ewallet_program.id,
|
||||
'coupon_qty': 1,
|
||||
'points_granted': 10,
|
||||
}).generate_coupons()
|
||||
|
||||
self.ewallet_program.coupon_ids[0].partner_id = self.env.user.partner_id
|
||||
|
||||
order = self.empty_cart
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id):
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.product.product_tmpl_id,
|
||||
product_id=self.product.id,
|
||||
quantity=1,
|
||||
)
|
||||
self.assertEqual(order.amount_total, 20)
|
||||
self.WebsiteSaleController.claim_reward(self.ewallet_program.reward_ids[0].id)
|
||||
self.assertEqual(order.amount_total, 10)
|
||||
|
|
@ -1,81 +1,118 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.tests.common import HttpCase
|
||||
from odoo import Command, http
|
||||
from odoo.tests import tagged
|
||||
from odoo.addons.website.tools import MockRequest
|
||||
|
||||
from odoo.addons.base.tests.common import HttpCaseWithUserPortal
|
||||
from odoo.addons.website_sale.tests.common import MockRequest, WebsiteSaleCommon
|
||||
from odoo.addons.website_sale_loyalty.controllers.cart import Cart
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestFreeProductReward(HttpCase):
|
||||
class TestFreeProductReward(HttpCaseWithUserPortal, WebsiteSaleCommon):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
self.WebsiteSaleController = WebsiteSale()
|
||||
self.website = self.env['website'].browse(1)
|
||||
cls.WebsiteSaleCartController = Cart()
|
||||
cls.WebsiteSaleController = WebsiteSale()
|
||||
|
||||
self.sofa = self.env['product.product'].create({
|
||||
'name': 'Test Sofa',
|
||||
'list_price': 2950.0,
|
||||
'website_published': True,
|
||||
})
|
||||
cls.website = cls.website.with_user(cls.user_portal)
|
||||
cls.empty_cart.partner_id = cls.partner_portal
|
||||
|
||||
self.carpet = self.env['product.product'].create({
|
||||
'name': 'Test Carpet',
|
||||
'list_price': 500.0,
|
||||
'website_published': True,
|
||||
})
|
||||
cls.sofa, cls.carpet = cls.env['product.product'].create([
|
||||
{
|
||||
'name': "Test Sofa",
|
||||
'list_price': 2950.0,
|
||||
'website_published': True,
|
||||
},
|
||||
{
|
||||
'name': "Test Carpet",
|
||||
'list_price': 500.0,
|
||||
'website_published': True,
|
||||
},
|
||||
])
|
||||
|
||||
# Disable any other program
|
||||
self.program = self.env['loyalty.program'].search([]).write({'active': False})
|
||||
cls.program = cls.env['loyalty.program'].search([]).write({'active': False})
|
||||
|
||||
self.program = self.env['loyalty.program'].create({
|
||||
cls.program = cls.env['loyalty.program'].create({
|
||||
'name': 'Get a product for free',
|
||||
'program_type': 'promotion',
|
||||
'applies_on': 'current',
|
||||
'trigger': 'auto',
|
||||
'rule_ids': [(0, 0, {
|
||||
'rule_ids': [Command.create({
|
||||
'minimum_qty': 1,
|
||||
'minimum_amount': 0.00,
|
||||
'reward_point_amount': 1,
|
||||
'reward_point_mode': 'order',
|
||||
'product_ids': self.sofa,
|
||||
'product_ids': cls.sofa,
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_ids': [Command.create({
|
||||
'reward_type': 'product',
|
||||
'reward_product_id': self.carpet.id,
|
||||
'reward_product_id': cls.carpet.id,
|
||||
'reward_product_qty': 1,
|
||||
'required_points': 1,
|
||||
})],
|
||||
})
|
||||
|
||||
self.steve = self.env['res.partner'].create({
|
||||
'name': 'Steve Bucknor',
|
||||
'email': 'steve.bucknor@example.com',
|
||||
})
|
||||
|
||||
self.empty_order = self.env['sale.order'].create({
|
||||
'partner_id': self.steve.id
|
||||
})
|
||||
|
||||
installed_modules = set(self.env['ir.module.module'].search([
|
||||
('state', '=', 'installed'),
|
||||
]).mapped('name'))
|
||||
for _ in http._generate_routing_rules(installed_modules, nodb_only=False):
|
||||
installed_modules = cls.env['ir.module.module'].search([('state', '=', 'installed')])
|
||||
for _ in http._generate_routing_rules(installed_modules.mapped('name'), nodb_only=False):
|
||||
pass
|
||||
|
||||
def test_add_product_to_cart_when_it_exist_as_free_product(self):
|
||||
# This test the flow when we claim a reward in the cart page and then we
|
||||
# want to add the product again
|
||||
order = self.empty_order
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id, website_sale_current_pl=1):
|
||||
self.WebsiteSaleController.cart_update_json(self.sofa.id, set_qty=1)
|
||||
order = self.empty_cart
|
||||
with MockRequest(self.website.env, website=self.website, sale_order_id=order.id):
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.sofa.product_tmpl_id,
|
||||
product_id=self.sofa.id,
|
||||
quantity=1,
|
||||
)
|
||||
self.WebsiteSaleController.claim_reward(self.program.reward_ids[0].id)
|
||||
self.WebsiteSaleController.cart_update_json(self.carpet.id, set_qty=1)
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.carpet.product_tmpl_id,
|
||||
product_id=self.carpet.id,
|
||||
quantity=1,
|
||||
)
|
||||
sofa_line = order.order_line.filtered(lambda line: line.product_id.id == self.sofa.id)
|
||||
carpet_reward_line = order.order_line.filtered(lambda line: line.product_id.id == self.carpet.id and line.is_reward_line)
|
||||
carpet_line = order.order_line.filtered(lambda line: line.product_id.id == self.carpet.id and not line.is_reward_line)
|
||||
self.assertEqual(sofa_line.product_uom_qty, 1, "Should have only 1 qty of Sofa")
|
||||
self.assertEqual(carpet_reward_line.product_uom_qty, 1, "Should have only 1 qty for the carpet as reward")
|
||||
self.assertEqual(carpet_line.product_uom_qty, 1, "Should have only 1 qty for carpet as non reward")
|
||||
|
||||
def test_get_claimable_free_shipping(self):
|
||||
cart = self.empty_cart
|
||||
self.program.write({
|
||||
'program_type': 'next_order_coupons',
|
||||
'applies_on': 'future',
|
||||
'coupon_ids': [
|
||||
Command.clear(),
|
||||
Command.create({'partner_id': cart.partner_id.id, 'points': 100}),
|
||||
],
|
||||
'reward_ids': [Command.update(self.program.reward_ids.id, {
|
||||
'reward_type': 'shipping',
|
||||
'reward_product_id': None,
|
||||
})],
|
||||
})
|
||||
coupon = self.program.coupon_ids
|
||||
|
||||
with MockRequest(self.website.env, website=self.website, sale_order_id=cart.id):
|
||||
self.assertDictEqual(cart._get_claimable_and_showable_rewards(), {
|
||||
coupon: self.program.reward_ids,
|
||||
})
|
||||
self.WebsiteSaleCartController.add_to_cart(
|
||||
product_template_id=self.sofa.product_tmpl_id,
|
||||
product_id=self.sofa.id,
|
||||
quantity=1,
|
||||
)
|
||||
self.WebsiteSaleController.claim_reward(self.program.reward_ids.id, code=coupon.code)
|
||||
self.assertTrue(cart.order_line.reward_id)
|
||||
self.assertFalse(
|
||||
cart._get_claimable_and_showable_rewards(),
|
||||
"Rewards should no longer be claimable if already claimed",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.sale_loyalty.tests.common import TestSaleCouponNumbersCommon
|
||||
from odoo.addons.website.tools import MockRequest
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.sale_loyalty.tests.common import TestSaleCouponNumbersCommon
|
||||
from odoo.addons.website_sale.tests.common import MockRequest
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestSaleCouponMultiwebsite(TestSaleCouponNumbersCommon):
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from datetime import date, timedelta
|
|||
from freezegun import freeze_time
|
||||
|
||||
from odoo import Command
|
||||
from odoo.tests import tagged
|
||||
from odoo.tests import JsonRpcException, tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment.tests.http_common import PaymentHttpCommon
|
||||
|
|
@ -12,7 +12,7 @@ from odoo.addons.sale_loyalty.tests.common import TestSaleCouponCommon
|
|||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestShopLoyaltyTransaction(PaymentHttpCommon, TestSaleCouponCommon):
|
||||
class TestShopLoyaltyPayment(PaymentHttpCommon, TestSaleCouponCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
|
|
@ -29,8 +29,7 @@ class TestShopLoyaltyTransaction(PaymentHttpCommon, TestSaleCouponCommon):
|
|||
order = self.empty_order
|
||||
program = self.program_gift_card
|
||||
|
||||
program.date_to = date.today() # set program to expire after today
|
||||
self.product_a.type = 'service' # prevent need for delivery method
|
||||
program.date_to = date.today() + timedelta(days=1) # set program to expire after tomorrow
|
||||
|
||||
self.env['loyalty.generate.wizard'].with_context(active_id=program.id).create({
|
||||
'coupon_qty': 1,
|
||||
|
|
@ -42,33 +41,51 @@ class TestShopLoyaltyTransaction(PaymentHttpCommon, TestSaleCouponCommon):
|
|||
'website_id': self.website.id,
|
||||
'message_partner_ids': self.portal_partner.ids,
|
||||
'order_line': [Command.create({
|
||||
'product_id': self.product_a.id,
|
||||
'product_id': self.service_product.id,
|
||||
'tax_ids': None,
|
||||
})],
|
||||
})
|
||||
self._apply_promo_code(order, program.coupon_ids.code)
|
||||
|
||||
with freeze_time(program.date_to + timedelta(days=1)):
|
||||
with freeze_time(program.date_to + timedelta(days=2)):
|
||||
self.authenticate(self.portal_user.login, self.portal_user.login)
|
||||
tx_response = self._make_json_rpc_request(
|
||||
with self.assertRaises(
|
||||
JsonRpcException,
|
||||
msg="Payment shouldn't succeed with expired reward still applied",
|
||||
):
|
||||
self.make_jsonrpc_request(
|
||||
self._build_url(f'/shop/payment/transaction/{order.id}'),
|
||||
{
|
||||
'order_id': order.id,
|
||||
'access_token': None,
|
||||
'amount': order.amount_total,
|
||||
'provider_id': self.provider.id,
|
||||
'payment_method_id': self.payment_method.id,
|
||||
'flow': 'direct',
|
||||
'token_id': None,
|
||||
'tokenization_requested': False,
|
||||
'landing_route': order.get_portal_url(),
|
||||
},
|
||||
)
|
||||
|
||||
# Update rewards & retry transaction
|
||||
order._update_programs_and_rewards()
|
||||
tx_response = self.make_jsonrpc_request(
|
||||
self._build_url(f'/shop/payment/transaction/{order.id}'),
|
||||
{
|
||||
'order_id': order.id,
|
||||
'access_token': None,
|
||||
'amount': order.amount_total,
|
||||
'currency_id': order.currency_id.id,
|
||||
'payment_option_id': self.provider.id,
|
||||
'provider_id': self.provider.id,
|
||||
'payment_method_id': self.payment_method.id,
|
||||
'flow': 'direct',
|
||||
'token_id': None,
|
||||
'tokenization_requested': False,
|
||||
'landing_route': order.get_portal_url(),
|
||||
},
|
||||
).json()
|
||||
|
||||
self.assertIn(
|
||||
'error',
|
||||
tx_response,
|
||||
"Attempting to initate payment with an expired reward should raise an error.",
|
||||
)
|
||||
self.assertEqual(
|
||||
tx_response['error']['data']['message'],
|
||||
"Cannot process payment: applied reward was changed or has expired.",
|
||||
)
|
||||
)
|
||||
self.assertEqual(
|
||||
tx_response['amount'],
|
||||
self.service_product.list_price,
|
||||
"Payment should succeed after removing expired reward",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,39 +1,43 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details
|
||||
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import TransactionCase, tagged
|
||||
from odoo import Command, http
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.website.tools import MockRequest
|
||||
from odoo.addons.website_sale.tests.common import MockRequest, WebsiteSaleCommon
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestClaimReward(TransactionCase):
|
||||
class TestClaimReward(WebsiteSaleCommon):
|
||||
|
||||
def test_claim_reward_with_multi_product(self):
|
||||
WebsiteSaleController = WebsiteSale()
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
tag = self.env['product.tag'].create({
|
||||
cls.WebsiteSaleController = WebsiteSale()
|
||||
|
||||
cls.user_portal = cls._create_new_portal_user()
|
||||
cls.partner_portal = cls.user_portal.partner_id
|
||||
|
||||
cls.env['product.pricelist'].search([]).action_archive()
|
||||
|
||||
tag = cls.env['product.tag'].create({
|
||||
'name': 'multi reward',
|
||||
})
|
||||
|
||||
product1, product2 = self.env['product.product'].create([
|
||||
cls.product1, cls.product2 = cls.env['product.product'].create([
|
||||
{
|
||||
'name': 'Test Product',
|
||||
'list_price': 10.0,
|
||||
'taxes_id': False,
|
||||
'product_tag_ids': tag,
|
||||
}, {
|
||||
'name': 'Test Product 2',
|
||||
'list_price': 20.0,
|
||||
'taxes_id': False,
|
||||
'product_tag_ids': tag,
|
||||
}])
|
||||
|
||||
partner = self.env['res.partner'].create({
|
||||
'name': 'Test Customer',
|
||||
'email': 'test@example.com',
|
||||
})
|
||||
|
||||
promo_program = self.env['loyalty.program'].create({
|
||||
cls.promo_program, cls.coupon_program = cls.env['loyalty.program'].create([{
|
||||
'name': 'Free Products',
|
||||
'program_type': 'promotion',
|
||||
'applies_on': 'current',
|
||||
|
|
@ -48,22 +52,100 @@ class TestClaimReward(TransactionCase):
|
|||
'reward_product_tag_id': tag.id,
|
||||
'reward_product_qty': 1,
|
||||
'required_points': 1,
|
||||
})]
|
||||
})
|
||||
|
||||
website = self.env['website'].browse(1)
|
||||
order = self.env['sale.order'].create({
|
||||
'website_id': website.id,
|
||||
'partner_id': partner.id,
|
||||
'order_line': [Command.create({
|
||||
'product_id': product1.id,
|
||||
'product_uom_qty': 1,
|
||||
})],
|
||||
})
|
||||
}, {
|
||||
'name': "Multi-reward coupons",
|
||||
'program_type': 'coupons',
|
||||
'applies_on': 'current',
|
||||
'trigger': 'with_code',
|
||||
'reward_ids': [
|
||||
Command.create({
|
||||
'reward_type': 'product',
|
||||
'reward_product_tag_id': tag.id,
|
||||
'reward_product_qty': 1,
|
||||
'required_points': 1,
|
||||
'discount': None,
|
||||
}),
|
||||
Command.create({
|
||||
'reward_type': 'discount',
|
||||
'discount': 10.0,
|
||||
'discount_mode': 'percent',
|
||||
'required_points': 1,
|
||||
}),
|
||||
],
|
||||
'coupon_ids': [Command.create({'points': 1})],
|
||||
}])
|
||||
cls.coupon = cls.coupon_program.coupon_ids
|
||||
|
||||
installed_modules = set(cls.env['ir.module.module'].search([
|
||||
('state', '=', 'installed'),
|
||||
]).mapped('name'))
|
||||
for _ in http._generate_routing_rules(installed_modules, nodb_only=False):
|
||||
pass
|
||||
|
||||
def test_claim_reward_with_multi_products(self):
|
||||
product1, product2 = self.product2, self.product2
|
||||
order = self.empty_cart
|
||||
order.order_line = [Command.create({'product_id': product1.id})]
|
||||
order._update_programs_and_rewards()
|
||||
with MockRequest(self.env, website=website, sale_order_id=order.id):
|
||||
|
||||
WebsiteSaleController.claim_reward(promo_program.reward_ids[:1].id, product_id=str(product2.id))
|
||||
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id):
|
||||
self.WebsiteSaleController.claim_reward(
|
||||
self.promo_program.reward_ids.id,
|
||||
product_id=str(product2.id),
|
||||
)
|
||||
self.assertEqual(len(order.order_line), 2, 'reward line should be added to order')
|
||||
self.assertEqual(order.order_line[1].product_id, product2, 'added reward line should should contain product 2')
|
||||
|
||||
def test_apply_coupon_with_multiple_rewards_claim_discount(self):
|
||||
cart = self.empty_cart
|
||||
cart.update({
|
||||
'partner_id': self.partner_portal.id,
|
||||
'order_line': [Command.create({'product_id': self.product1.id})],
|
||||
})
|
||||
cart._update_programs_and_rewards()
|
||||
website = cart.website_id.with_user(self.user_portal)
|
||||
discount_reward = self.coupon_program.reward_ids.filtered('discount')
|
||||
|
||||
with MockRequest(website.env, website=website, sale_order_id=cart.id):
|
||||
self.WebsiteSaleController.pricelist(promo=self.coupon.code)
|
||||
self.assertFalse(cart.order_line.reward_id)
|
||||
|
||||
self.WebsiteSaleController.claim_reward(discount_reward.id, code=self.coupon.code)
|
||||
self.assertTrue(cart.order_line.reward_id)
|
||||
self.assertEqual(
|
||||
discount_reward, cart.order_line.reward_id,
|
||||
"Discount reward should be added to order",
|
||||
)
|
||||
self.assertAlmostEqual(
|
||||
cart.amount_untaxed, self.product1.list_price * 0.9,
|
||||
delta=cart.currency_id.rounding,
|
||||
msg="10% discount should be applied",
|
||||
)
|
||||
|
||||
def test_apply_coupon_with_multiple_rewards_claim_multiproduct(self):
|
||||
cart = self.empty_cart
|
||||
cart.update({
|
||||
'partner_id': self.partner_portal.id,
|
||||
'order_line': [Command.create({'product_id': self.product1.id})],
|
||||
})
|
||||
cart._update_programs_and_rewards()
|
||||
website = cart.website_id.with_user(self.user_portal)
|
||||
multiproduct_reward = self.coupon_program.reward_ids.filtered('reward_product_tag_id')
|
||||
|
||||
with MockRequest(website.env, website=website, sale_order_id=cart.id):
|
||||
self.WebsiteSaleController.pricelist(promo=self.coupon.code)
|
||||
self.assertFalse(cart.order_line.reward_id)
|
||||
|
||||
self.WebsiteSaleController.claim_reward(
|
||||
multiproduct_reward.id,
|
||||
code=self.coupon.code,
|
||||
product_id=str(self.product1.id),
|
||||
)
|
||||
self.assertEqual(
|
||||
multiproduct_reward, cart.order_line.reward_id,
|
||||
"Product reward should be added",
|
||||
)
|
||||
self.assertIn(
|
||||
self.product1, cart.order_line.product_id,
|
||||
"Chosen reward product should be added to order",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,18 +1,20 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import timedelta
|
||||
|
||||
from odoo import fields
|
||||
from odoo import fields, http
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import HttpCase, TransactionCase, tagged
|
||||
from odoo.tests import HttpCase, tagged
|
||||
|
||||
from odoo.addons.sale.tests.test_sale_product_attribute_value_config import (
|
||||
TestSaleProductAttributeValueCommon,
|
||||
)
|
||||
from odoo.addons.sale.tests.common import TestSaleCommon
|
||||
from odoo.addons.website_sale.tests.common import MockRequest, WebsiteSaleCommon
|
||||
from odoo.addons.website_sale_loyalty.controllers.cart import Cart
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
||||
class WebsiteSaleLoyaltyTestUi(TestSaleCommon, HttpCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
|
|
@ -21,6 +23,7 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
'company_id': cls.env.company.id,
|
||||
'company_ids': [(4, cls.env.company.id)],
|
||||
'name': 'Mitchell Admin',
|
||||
'email': 'mitchell.admin@example.com',
|
||||
'street': '215 Vine St',
|
||||
'phone': '+1 555-555-5555',
|
||||
'city': 'Scranton',
|
||||
|
|
@ -30,16 +33,7 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
})
|
||||
cls.env.ref('base.user_admin').sudo().partner_id.company_id = cls.env.company
|
||||
cls.env.ref('website.default_website').company_id = cls.env.company
|
||||
# set currency to not rely on demo data and avoid possible race condition
|
||||
cls.currency_ratio = 1.0
|
||||
pricelist = cls.env.ref('product.list0')
|
||||
new_currency = cls._setup_currency(cls.currency_ratio)
|
||||
pricelist.currency_id = new_currency
|
||||
cls.env.user.partner_id.write({
|
||||
'property_product_pricelist': pricelist.id,
|
||||
})
|
||||
(cls.env['product.pricelist'].search([]) - pricelist).write({'active': False})
|
||||
cls.env.flush_all()
|
||||
cls.public_category = cls.env['product.public.category'].create({'name': 'Public Category'})
|
||||
|
||||
def test_01_admin_shop_sale_loyalty_tour(self):
|
||||
if self.env['ir.module.module']._get('payment_custom').state != 'installed':
|
||||
|
|
@ -53,16 +47,13 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
})
|
||||
transfer_provider._transfer_ensure_pending_msg_is_set()
|
||||
|
||||
# pre enable "Show # found" option to avoid race condition...
|
||||
public_category = self.env['product.public.category'].create({'name': 'Public Category'})
|
||||
|
||||
large_cabinet = self.env['product.product'].create({
|
||||
'name': 'Small Cabinet',
|
||||
'list_price': 320.0,
|
||||
'type': 'consu',
|
||||
'is_published': True,
|
||||
'sale_ok': True,
|
||||
'public_categ_ids': [(4, public_category.id)],
|
||||
'public_categ_ids': [(4, self.public_category.id)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
|
||||
|
|
@ -74,7 +65,6 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
'purchase_ok': False,
|
||||
'invoice_policy': 'order',
|
||||
'default_code': 'FREELARGECABINET',
|
||||
'categ_id': self.env.ref('product.product_category_all').id,
|
||||
'taxes_id': False,
|
||||
})
|
||||
|
||||
|
|
@ -86,7 +76,6 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
'purchase_ok': False,
|
||||
'invoice_policy': 'order',
|
||||
'default_code': '10PERCENTDISC',
|
||||
'categ_id': self.env.ref('product.product_category_all').id,
|
||||
'taxes_id': False,
|
||||
})
|
||||
|
||||
|
|
@ -151,16 +140,13 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
self.start_tour("/", 'shop_sale_loyalty', login="admin")
|
||||
|
||||
def test_02_admin_shop_gift_card_tour(self):
|
||||
# pre enable "Show # found" option to avoid race condition...
|
||||
public_category = self.env['product.public.category'].create({'name': 'Public Category'})
|
||||
|
||||
gift_card = self.env['product.product'].create({
|
||||
'name': 'TEST - Gift Card',
|
||||
'list_price': 50,
|
||||
'type': 'service',
|
||||
'is_published': True,
|
||||
'sale_ok': True,
|
||||
'public_categ_ids': [(4, public_category.id)],
|
||||
'public_categ_ids': [(4, self.public_category.id)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
self.env['product.product'].create({
|
||||
|
|
@ -169,7 +155,7 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
'type': 'consu',
|
||||
'is_published': True,
|
||||
'sale_ok': True,
|
||||
'public_categ_ids': [(4, public_category.id)],
|
||||
'public_categ_ids': [(4, self.public_category.id)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
# Disable any other program
|
||||
|
|
@ -225,13 +211,44 @@ class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
|||
self.assertEqual(len(gift_card_program.coupon_ids), 2, 'There should be two coupons, one with points, one without')
|
||||
self.assertEqual(len(gift_card_program.coupon_ids.filtered('points')), 1, 'There should be two coupons, one with points, one without')
|
||||
|
||||
def test_03_admin_shop_ewallet_tour(self):
|
||||
self.env['product.product'].create({
|
||||
'name': "TEST - Gift Card",
|
||||
'list_price': 50,
|
||||
'type': 'service',
|
||||
'is_published': True,
|
||||
'sale_ok': True,
|
||||
'public_categ_ids': [(4, self.public_category.id)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
# Disable any other program
|
||||
self.env['loyalty.program'].search([]).write({'active': False})
|
||||
ewallet_programs = self.env['loyalty.program'].create([{
|
||||
'name': f"ewallet - test - {ecommerce_ok=}",
|
||||
'applies_on': 'future',
|
||||
'trigger': 'auto',
|
||||
'program_type': 'ewallet',
|
||||
'ecommerce_ok': ecommerce_ok,
|
||||
'reward_ids': [Command.create({
|
||||
'reward_type': 'discount',
|
||||
'discount_mode': 'per_point',
|
||||
'discount': 1,
|
||||
})],
|
||||
} for ecommerce_ok in (True, False)])
|
||||
self.env['loyalty.card'].create([{
|
||||
'partner_id': self.env.ref('base.partner_admin').id,
|
||||
'program_id': program_id,
|
||||
'points': 1000,
|
||||
} for program_id in ewallet_programs.ids])
|
||||
self.start_tour('/', 'shop_sale_ewallet', login='admin')
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestWebsiteSaleCoupon(TransactionCase):
|
||||
class TestWebsiteSaleCoupon(HttpCase, WebsiteSaleCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestWebsiteSaleCoupon, cls).setUpClass()
|
||||
super().setUpClass()
|
||||
program = cls.env['loyalty.program'].create({
|
||||
'name': '10% TEST Discount',
|
||||
'trigger': 'with_code',
|
||||
|
|
@ -250,14 +267,6 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
}).generate_coupons()
|
||||
cls.coupon = program.coupon_ids[0]
|
||||
|
||||
cls.steve = cls.env['res.partner'].create({
|
||||
'name': 'Steve Bucknor',
|
||||
'email': 'steve.bucknor@example.com',
|
||||
})
|
||||
cls.empty_order = cls.env['sale.order'].create({
|
||||
'partner_id': cls.steve.id
|
||||
})
|
||||
|
||||
def _apply_promo_code(self, order, code, no_reward_fail=True):
|
||||
status = order._try_apply_code(code)
|
||||
if 'error' in status:
|
||||
|
|
@ -277,18 +286,17 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
|
||||
def test_01_gc_coupon(self):
|
||||
# 1. Simulate a frontend order (website, product)
|
||||
order = self.empty_order
|
||||
order.website_id = self.env['website'].browse(1)
|
||||
self.env['sale.order.line'].create({
|
||||
'product_id': self.env['product.product'].create({
|
||||
'name': 'Product A',
|
||||
'list_price': 100,
|
||||
'sale_ok': True,
|
||||
}).id,
|
||||
'name': 'Product A',
|
||||
'product_uom_qty': 2.0,
|
||||
'order_id': order.id,
|
||||
})
|
||||
order = self.empty_cart
|
||||
order.order_line = [
|
||||
Command.create({
|
||||
'product_id': self.env['product.product'].create({
|
||||
'name': 'Product A',
|
||||
'list_price': 100,
|
||||
'sale_ok': True,
|
||||
}).id,
|
||||
'product_uom_qty': 2.0,
|
||||
})
|
||||
]
|
||||
|
||||
# 2. Apply the coupon
|
||||
self._apply_promo_code(order, self.coupon.code)
|
||||
|
|
@ -306,7 +314,7 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
icp_validity = ICP.create({'key': 'website_sale_coupon.abandonned_coupon_validity', 'value': 5})
|
||||
self.env.flush_all()
|
||||
query = """UPDATE %s SET write_date = %%s WHERE id = %%s""" % (order._table,)
|
||||
self.env.cr.execute(query, (fields.Datetime.to_string(fields.datetime.now() - timedelta(days=4, hours=2)), order.id))
|
||||
self.env.cr.execute(query, (fields.Datetime.to_string(fields.Datetime.now() - timedelta(days=4, hours=2)), order.id))
|
||||
order._gc_abandoned_coupons()
|
||||
|
||||
self.assertEqual(len(order.applied_coupon_ids), 1, "The coupon shouldn't have been removed from the order the order is 4 days old but icp validity is 5 days")
|
||||
|
|
@ -317,17 +325,52 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
|
||||
self.assertEqual(len(order.applied_coupon_ids), 0, "The coupon should've been removed from the order as more than 4 days")
|
||||
|
||||
def test_02_remove_coupon(self):
|
||||
# 1. Simulate a frontend order (website, product)
|
||||
order = self.empty_order
|
||||
order.website_id = self.env['website'].browse(1)
|
||||
self.env['sale.order.line'].create({
|
||||
'product_id': self.env['product.product'].create({
|
||||
'name': 'Product A', 'list_price': 100, 'sale_ok': True
|
||||
}).id,
|
||||
'name': 'Product A',
|
||||
'order_id': order.id,
|
||||
def test_02_apply_discount_code_program_multi_rewards(self):
|
||||
"""
|
||||
Check the triggering of a promotion program based on a promo code with multiple rewards
|
||||
"""
|
||||
self.env['loyalty.program'].search([]).write({'active': False})
|
||||
chair = self.env['product.product'].create({
|
||||
'name': 'Super Chair', 'list_price': 1000, 'website_published': True
|
||||
})
|
||||
self.discount_code_program_multi_rewards = self.env['loyalty.program'].create({
|
||||
'name': 'Discount code program',
|
||||
'program_type': 'promo_code',
|
||||
'applies_on': 'current',
|
||||
'trigger': 'with_code',
|
||||
'rule_ids': [(0, 0, {
|
||||
'code': '12345',
|
||||
'reward_point_amount': 1,
|
||||
'reward_point_mode': 'order',
|
||||
})],
|
||||
'reward_ids': [
|
||||
(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount': 10,
|
||||
'discount_applicability': 'specific',
|
||||
'required_points': 1,
|
||||
'discount_product_ids': chair,
|
||||
}),
|
||||
(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount': 50,
|
||||
'discount_applicability': 'order',
|
||||
'required_points': 1,
|
||||
}),
|
||||
],
|
||||
})
|
||||
self.start_tour('/', 'apply_discount_code_program_multi_rewards', login='admin')
|
||||
|
||||
def test_03_remove_coupon(self):
|
||||
# 1. Simulate a frontend order (website, product)
|
||||
order = self.empty_cart
|
||||
order.order_line = [
|
||||
Command.create({
|
||||
'product_id': self.env['product.product'].create({
|
||||
'name': 'Product A', 'list_price': 100, 'sale_ok': True
|
||||
}).id,
|
||||
})
|
||||
]
|
||||
|
||||
# 2. Apply the coupon
|
||||
self._apply_promo_code(order, self.coupon.code)
|
||||
|
|
@ -337,11 +380,58 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
lambda l: l.coupon_id and l.coupon_id.id == self.coupon.id
|
||||
)
|
||||
|
||||
order._cart_update(coupon_line.product_id.id, add_qty=None)
|
||||
website = self.website
|
||||
with MockRequest(website.env, website=self.website, sale_order_id=order.id):
|
||||
Cart().update_cart(
|
||||
line_id=None, quantity=0.0, product_id=coupon_line.product_id.id,
|
||||
)
|
||||
|
||||
msg = "The coupon should've been removed from the order"
|
||||
self.assertEqual(len(order.applied_coupon_ids), 0, msg=msg)
|
||||
|
||||
def test_04_apply_coupon_code_twice(self):
|
||||
"""This test ensures that applying a coupon with code twice will:
|
||||
1. Raise an error
|
||||
2. Not delete the coupon
|
||||
"""
|
||||
# Create product
|
||||
product = self.env['product.product'].create({
|
||||
'name': 'Product',
|
||||
'list_price': 100,
|
||||
'sale_ok': True,
|
||||
'taxes_id': [],
|
||||
})
|
||||
|
||||
order = self.empty_cart
|
||||
order.order_line = [Command.create({'product_id': product.id})]
|
||||
|
||||
WebsiteSaleController = WebsiteSale()
|
||||
|
||||
installed_modules = set(self.env['ir.module.module'].search([
|
||||
('state', '=', 'installed'),
|
||||
]).mapped('name'))
|
||||
for _ in http._generate_routing_rules(installed_modules, nodb_only=False):
|
||||
pass
|
||||
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=order.id) as request:
|
||||
# Check the base cart value
|
||||
self.assertEqual(order.amount_total, 100.0, "The base cart value is incorrect.")
|
||||
|
||||
# Apply coupon for the first time
|
||||
WebsiteSaleController.pricelist(promo=self.coupon.code)
|
||||
|
||||
# Check that the coupon has been applied
|
||||
self.assertEqual(order.amount_total, 90.0, "The coupon is not applied.")
|
||||
|
||||
# Apply the coupon again
|
||||
WebsiteSaleController.pricelist(promo=self.coupon.code)
|
||||
Cart().cart()
|
||||
error_msg = request.session.get('error_promo_code')
|
||||
|
||||
# Check that the coupon stay applied
|
||||
self.assertEqual(bool(error_msg), True, "Apply a coupon twice should display an error message")
|
||||
self.assertEqual(order.amount_total, 90.0, "Apply a coupon twice shouldn't delete it")
|
||||
|
||||
def test_03_remove_coupon_with_different_taxes_on_products(self):
|
||||
"""
|
||||
Tests the removal of a coupon from an order containing products with various tax rates,
|
||||
|
|
@ -394,11 +484,8 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
} for name, taxes_id in products_data]
|
||||
)
|
||||
|
||||
order = self.empty_order
|
||||
order.write({
|
||||
'website_id': self.env['website'].browse(1),
|
||||
'order_line': [Command.create({'product_id': product.id}) for product in products],
|
||||
})
|
||||
order = self.empty_cart
|
||||
order.order_line = [Command.create({'product_id': product.id}) for product in products]
|
||||
|
||||
msg = "There should only be 4 lines for the 4 products."
|
||||
self.assertEqual(len(order.order_line), 4, msg=msg)
|
||||
|
|
@ -416,12 +503,11 @@ class TestWebsiteSaleCoupon(TransactionCase):
|
|||
coupon_line = order.website_order_line.filtered(
|
||||
lambda line: line.coupon_id and line.coupon_id.id == self.coupon.id
|
||||
)
|
||||
order._cart_update(
|
||||
product_id=coupon_line.product_id.id,
|
||||
line_id=None,
|
||||
add_qty=None,
|
||||
set_qty=0,
|
||||
)
|
||||
website = self.website
|
||||
with MockRequest(website.env, website=self.website, sale_order_id=order.id):
|
||||
Cart().update_cart(
|
||||
line_id=None, quantity=0.0, product_id=coupon_line.product_id.id,
|
||||
)
|
||||
|
||||
msg = "All coupon lines should have been removed from the order."
|
||||
self.assertEqual(len(order.applied_coupon_ids), 0, msg=msg)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,45 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.website_sale.controllers.main import WebsiteSale
|
||||
from odoo.addons.website_sale.tests.common import MockRequest, WebsiteSaleCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestWebsiteSaleAutoInvoice(WebsiteSaleCommon):
|
||||
|
||||
def test_automatic_invoice_on_zero_amount(self):
|
||||
# Set automatic invoice
|
||||
self.env['ir.config_parameter'].sudo().set_param('sale.automatic_invoice', 'True')
|
||||
Controller = WebsiteSale()
|
||||
|
||||
# Create a discount code
|
||||
program = self.env['loyalty.program'].sudo().create({
|
||||
'name': '100discount',
|
||||
'program_type': 'promo_code',
|
||||
'rule_ids': [
|
||||
Command.create({
|
||||
'code': "100code",
|
||||
'minimum_amount': 0,
|
||||
})
|
||||
],
|
||||
'reward_ids': [
|
||||
Command.create({
|
||||
'discount': 100,
|
||||
})
|
||||
]
|
||||
})
|
||||
|
||||
self.cart.carrier_id = self.free_delivery
|
||||
|
||||
# Apply discount
|
||||
self.cart._try_apply_code("100code")
|
||||
self.cart._apply_program_reward(program.reward_ids, program.coupon_ids)
|
||||
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=self.cart.id):
|
||||
Controller.shop_payment_validate()
|
||||
self.assertTrue(
|
||||
self.cart.invoice_ids, "Invoices should be generated for orders with zero total amount",
|
||||
)
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue