mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 21:32:00 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
from . import wizard
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# -*- 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""",
|
||||
'description': """
|
||||
Create coupon, promotion codes, gift cards and loyalty programs to boost your sales (free products, discounts, etc.). Shoppers can use them in the eCommerce checkout.
|
||||
|
||||
Coupon & promotion programs can be edited in the Catalog menu of the Website app.
|
||||
""",
|
||||
'category': 'Website/Website',
|
||||
'version': '1.0',
|
||||
'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',
|
||||
],
|
||||
'demo': [
|
||||
'data/product_demo.xml',
|
||||
],
|
||||
'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',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'website_sale_loyalty/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,153 @@
|
|||
# -*- 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
|
||||
|
||||
from werkzeug.urls import url_encode, url_parse
|
||||
|
||||
|
||||
class WebsiteSale(main.WebsiteSale):
|
||||
|
||||
@http.route()
|
||||
def pricelist(self, promo, **post):
|
||||
order = request.website.sale_get_order()
|
||||
coupon_status = order._try_apply_code(promo)
|
||||
if coupon_status.get('not_found'):
|
||||
return super(WebsiteSale, self).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 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)
|
||||
def activate_coupon(self, code, r='/shop', **kw):
|
||||
url_parts = url_parse(r)
|
||||
url_query = url_parts.decode_query()
|
||||
url_query.pop('coupon_error', False) # trust only Odoo error message
|
||||
url_query.pop('coupon_error_type', False)
|
||||
code = code.strip()
|
||||
|
||||
request.session['pending_coupon_code'] = code
|
||||
order = request.website.sale_get_order()
|
||||
if order:
|
||||
result = order._try_pending_coupon()
|
||||
if isinstance(result, dict) and 'error' in result:
|
||||
url_query['coupon_error'] = result['error']
|
||||
else:
|
||||
url_query['notify_coupon'] = code
|
||||
else:
|
||||
url_query['coupon_error'] = _("The coupon will be automatically applied when you add something in your cart.")
|
||||
url_query['coupon_error_type'] = 'warning'
|
||||
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
|
||||
redirect = post.get('r', '/shop/cart')
|
||||
if not coupon_id or not reward_id.exists():
|
||||
return request.redirect(redirect)
|
||||
if reward_id.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)
|
||||
return request.redirect(redirect)
|
||||
|
||||
def _apply_reward(self, order, reward, coupon):
|
||||
"""Try to apply the given program reward
|
||||
|
||||
:returns: whether the reward was successfully applied
|
||||
:rtype: bool
|
||||
"""
|
||||
product_id = request.env.context.get('product_id')
|
||||
product = product_id and request.env['product.product'].sudo().browse(product_id)
|
||||
try:
|
||||
reward_status = order._apply_program_reward(reward, coupon, product=product)
|
||||
except UserError as e:
|
||||
request.session['error_promo_code'] = str(e)
|
||||
return False
|
||||
if 'error' in reward_status:
|
||||
request.session['error_promo_code'] = reward_status['error']
|
||||
return False
|
||||
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,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="loyalty.gift_card_product_50" model="product.product">
|
||||
<field name="is_published" eval="True"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,311 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
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, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 "Geskep deur"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. 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 "Vertoningsnaam"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Webtuiste"
|
||||
|
||||
#. 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 ""
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
# 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: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
|
|
@ -0,0 +1,325 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "كافة المواقع الإلكترونية "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "سيتم تطبيق الكوبون تلقائياً عندما تقوم بإضافة شيء إلى عربة تسوقك. "
|
||||
|
||||
#. 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 "يجب أن يكون الكود الترويجي فريداً. "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"يمكنك مشاركة هذا العرض التويجي مع عملائك.\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 "في محفظتك الإلكترونية "
|
||||
|
|
@ -0,0 +1,320 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Dəyərlər"
|
||||
|
||||
#. 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 "Tərəfindən yaradılıb"
|
||||
|
||||
#. 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ı"
|
||||
|
||||
#. 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 "Endirim:"
|
||||
|
||||
#. 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 "Ekran Adı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hazırdır"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Loyallıq Proqramı"
|
||||
|
||||
#. 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 "Promo kod"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Yönləndir"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Satış Sifarişi"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Veb sayt"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
|
@ -0,0 +1,311 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,329 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "Всички уебсайтове"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
"Купонът ще бъде приложен автоматично, когато добавите нещо в количката си."
|
||||
|
||||
#. 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 "Промокодът трябва да е уникален."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "В вашият електронен портфейл"
|
||||
|
|
@ -0,0 +1,314 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon je potreban za kuponske programe."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Ne mogu obraditi plaćanje: primijenjena nagrada je promijenjena ili je istekla."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. 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 "Kreirajte linkove koji primjenjuju kupon i preusmjeravaju na specifičnu stranicu"
|
||||
|
||||
#. 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 "Onemogućene automatske nagrade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Kuponi i Vjernost"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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 "Iznos s popustom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Riješeno"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lojalnost"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kupon lojalnosti"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program lojalnosti"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Pravila odanosti"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Web stranica programa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promo kod"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Navedite ili kupon ili program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmjeri"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajnog 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
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Podijeli link"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Prikaži popust u međuzbroju"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Dijeljanja web stranica treba da odgovara web stranici programa."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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 "u vašem enovčaniku"
|
||||
|
|
@ -0,0 +1,323 @@
|
|||
# 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
|
||||
#
|
||||
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 Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Es necessita un cupó per als programes de cupons."
|
||||
|
||||
#. 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 "S'ha trobat un cupó amb el mateix codi."
|
||||
|
||||
#. 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 "Tots els llocs web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "No s'ha pogut aplicar el codi de promoció:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Cupó"
|
||||
|
||||
#. 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 ""
|
||||
"Crear enllaços que apliquin un cupó i redirigeixin a una pàgina específica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Descompte:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Quantitat descomptada"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#. 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.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
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..."
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lleialtat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Cupó lleial"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
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 "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
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 "Lloc web del programa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Codi de promoció"
|
||||
|
||||
#. 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 "Proporcioneu un cupó o un programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Redirigir"
|
||||
|
||||
#. 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 "Restringir les publicacions en aquest portal web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Comanda de venda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostra el descompte en el 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 ""
|
||||
"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:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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
|
||||
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: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 "Lloc 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."
|
||||
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é"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,328 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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."
|
||||
|
||||
#. 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 "Všechny webové stránky"
|
||||
|
||||
#. 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 "Náklady"
|
||||
|
||||
#. 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 "Kupón"
|
||||
|
||||
#. 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 "Vytvoří odkazy, které uplatní kupón a přesměrují na konkrétní stránku"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. 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 "Slevy a věrnostní programy"
|
||||
|
||||
#. 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 "Sleva:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Zvýhodněná částka"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#. 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.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 "Dárkový poukaz nebo slevový kód..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Poukazy a digitální peněženky"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Věrnostní položky"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Věrnostní kupón"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Věrnostní 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 "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"
|
||||
|
||||
#. 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 "Program"
|
||||
|
||||
#. 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 "Promo kód"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Přesměrování"
|
||||
|
||||
#. 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 "Omezit publikování na této webstránce."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
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"
|
||||
|
||||
#. 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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Sdílet odkaz"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "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
|
||||
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 "Webstrá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."
|
||||
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 ""
|
||||
|
|
@ -0,0 +1,318 @@
|
|||
# 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
|
||||
#
|
||||
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: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "En kupon er nødvendig for kuponprogrammer."
|
||||
|
||||
#. 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 "Der blev fundet en kupon 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
|
||||
msgid "All websites"
|
||||
msgstr "Alle hjemmesider"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Rabat & 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Rabat:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Rabat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Udført"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Loyalitet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Loyalitetskupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Loyalitetsprogram"
|
||||
|
||||
#. 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 "Loyalitetsprogrammer"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Loyalitet regel"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 hjemmeside"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Kampagnekode"
|
||||
|
||||
#. 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 "Giv enten en kupon eller et program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
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 "Begræns udgivelse til denne hjemmeside."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Salgsordre"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Del link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Del loyalitetskort"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Vis rabat i 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 ""
|
||||
"Kuponen 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
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Følgende kampagnekode blev anvendt på din ordre:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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
|
||||
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: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 "Hjemmeside"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,328 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Alle Websites"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"Zahlung kann nicht verarbeitet werden: Angewandte Belohnung wurde geändert "
|
||||
"oder ist abgelaufen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Der Aktionscode konnte nicht angewendet werden:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Gutschein"
|
||||
|
||||
#. 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 ""
|
||||
"Links erstellen, die einen Gutschein anwenden und zu einer bestimmten Seite "
|
||||
"weiterleiten"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Automatische Belohnungen deaktiviert"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Rabatt & Treue"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Rabattcode oder Geschenkkarte"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Rabatt:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Rabattierter Betrag"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Erledigt"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Shortlink generieren"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Geschenkkarte oder Rabattcode ..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Geschenkkarten & E-Geldbörse"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Treue"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Treuegutschein"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Treueprogramm"
|
||||
|
||||
#. 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 "Treueprogramme"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programm"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Programm-Website"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Aktionscode"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Bieten Sie entweder einen Gutschein oder ein Programm an."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Umleiten"
|
||||
|
||||
#. 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 "Beschränken Sie die Veröffentlichung auf dieser Website."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Verkaufsauftrag"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Link teilen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Treuekarte teilen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Rabatt in Zwischensumme 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."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "The following promo code was applied on your order:"
|
||||
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
|
||||
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: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 ""
|
||||
"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"
|
||||
|
|
@ -0,0 +1,328 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Todos los sitios web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"No se puede procesar el pago: la recompensa solicitada se ha modificado o ha"
|
||||
" caducado."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "No se pudo aplicar el 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ón"
|
||||
|
||||
#. 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 ""
|
||||
"Cree enlaces que apliquen un cupón y redireccionen a una página específica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. 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 automáticas deshabilitadas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Descuento:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Cantidad descontada"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. 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.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
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..."
|
||||
|
||||
#. 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 monedero electrónico"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Última actualización 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 actualización el"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Fidelidad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Cupón de fidelidad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programa de fidelización"
|
||||
|
||||
#. 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 fidelización"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
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 "Sitio web del 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Proporcione un cupón o un programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Redireccionar"
|
||||
|
||||
#. 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 "Restringir publicar a este sitio web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pedido de venta"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Compartir enlace"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostrar descuento en el subtotal"
|
||||
|
||||
#. 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 "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:"
|
||||
|
||||
#. 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
|
||||
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: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 "Sitio 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."
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Todos los sitios web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"No se puede procesar el pago: La recompensa solicitada fue modificada o "
|
||||
"venció."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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 "Costos"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "No se pudo aplicar el 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ón"
|
||||
|
||||
#. 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 ""
|
||||
"Cree enlaces que apliquen un cupón y redireccionen a una página específica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. 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 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Descuento:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Importe con descuento"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Generar 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..."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización 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 actualización el"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lealtad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Cupón de lealtad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programa de lealtad"
|
||||
|
||||
#. 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 lealtad"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
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 "Sitio web del 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Proporcione un cupón o un programa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Redireccionar"
|
||||
|
||||
#. 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 "Restringir publicaciones a este sitio web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Orden de venta"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Compartir enlace"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostrar descuento en el subtotal"
|
||||
|
||||
#. 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 ""
|
||||
"El cupón se aplicará de forma automática cuando agregue algo a su carrito."
|
||||
|
||||
#. 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 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
|
||||
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: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 "Sitio 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."
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,323 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupong on vajalik kupongiprogrammide jaoks."
|
||||
|
||||
#. 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 "Leiti sama koodiga kupong."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Nõue"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kulud"
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Sooduskupong"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Allahindlus ja lojaalsusprogramm"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Allahindlus:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Soodushind"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Tehtud"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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..."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr " Lojaalsusprogramm"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Lojaalsuskupong"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Lojaalsusprogramm"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Lojaalsusreegel"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programm"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Sooduskood"
|
||||
|
||||
#. 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 "Esitage kupong või kampaaniaprogramm."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Suuna ümber"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Müügitellimus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Müügitellimuse rida"
|
||||
|
||||
#. 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 "Jaga"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Jaga linki"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Näita allahindlust vahesummas"
|
||||
|
||||
#. 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 "Kupong rakendatakse automaatselt, kui lisate midagi oma ostukorvi."
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/models/loyalty_rule.py:0
|
||||
#, python-format
|
||||
msgid "The promo code must be unique."
|
||||
msgstr "Sooduskood peab olema unikaalne. "
|
||||
|
||||
#. 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 "Jagatud veebisait peaks vastama programmi veebisaidile."
|
||||
|
||||
#. 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 "Veebileht"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
|
@ -0,0 +1,333 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "همه سایت ها"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
"هنگامی که چیزی را در سبد خرید خود اضافه می کنید، کوپن به طور خودکار اعمال می"
|
||||
" شود.هنگامی که چیزی را در سبد خرید خود اضافه می کنید، کوپن به طور خودکار "
|
||||
"اعمال می شود."
|
||||
|
||||
#. 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 "کد تبلیغاتی باید منحصر به فرد باشد."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"شما می توانید این تبلیغات را با مشتریان خود به اشتراک بگذارید.\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 "در کیف پول الکترونیکی شما"
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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 ""
|
||||
"Maksua ei voida käsitellä: haettu palkkio on muuttunut tai vanhentunut."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
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ä"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Alennus & kanta-asikkuus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Alennuskoodi tai lahjakortti"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Alennus:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Alennettu summa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Valmis"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Luo lyhyt linkki"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Kanta-asiakkuus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kanta-asiakkuuden kuponki"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Kanta-asiakkaan sää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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Ohjelma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Ohjelman verkkosivusto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Kampanjakoodi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Tarjoa joko kuponki tai ohjelma."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Uudelleenohjaus"
|
||||
|
||||
#. 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 "Rajoita julkaisu tälle verkkosivustolle."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Myyntitilaus"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Jaa linkki"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Jaa kanta-asiakaskortti"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Näytä alennus välisummassa"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Jaetun verkkosivuston on vastattava ohjelman verkkosivustoa."
|
||||
|
||||
#. 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 "Verkkosivu"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,329 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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é."
|
||||
|
||||
#. 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 "Tous les sites web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"Impossible de traiter le paiement : la récompense appliquée a été modifiée "
|
||||
"ou a expiré."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Vous ne pouvez pas appliquer ce code promo :"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Bon 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"
|
||||
msgstr ""
|
||||
"Créez des liens qui appliquent un bon de réduction et redirigent vers une "
|
||||
"page spécifique"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Récompenses automatiques désactivées"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Remise & Fidélité"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Code de remise ou carte cadeau"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Remise :"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Montant de la remise"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
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 ..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Cartes-cadeaux & e-wallet"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Fidélité"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Bon de fidélité"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programme de fidelité"
|
||||
|
||||
#. 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 "Programmes de fidélité"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programme"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Site web du programme"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Code promo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Fournissez un bon de réduction ou un programme."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Redirection"
|
||||
|
||||
#. 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 "Limiter la publication sur ce site web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
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"
|
||||
|
||||
#. 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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Partager le lien"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Afficher la remise dans le sous-total"
|
||||
|
||||
#. 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 ""
|
||||
"Le bon de réduction sera automatiquement appliqué lorsque vous ajouterez "
|
||||
"quelque chose dans votre panier."
|
||||
|
||||
#. 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 "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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Le site web partagé doit correspondre au site web du programme."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
|
@ -0,0 +1,311 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,326 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "כל האתרים"
|
||||
|
||||
#. 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 "כרטיסי מתנה & eWallet"
|
||||
|
||||
#. 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 "קופון loyalty"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "קוד ההנחה חייב להיות ייחודי."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,321 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon je potreban za kuponske programe."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Zahtjev"
|
||||
|
||||
#. 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 "Nije moguće primijeniti promotivni kôd:"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Kuponi i Vjernost"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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 "Iznos s popustom"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Riješeno"
|
||||
|
||||
#. 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 "Darovna kartica ili kod za popust"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Program lojalnosti"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Pravila odanosti"
|
||||
|
||||
#. 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 "Program"
|
||||
|
||||
#. 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 "Promo kod"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Navedite ili kupon ili program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmjeri"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajnog 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
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Podijeli link"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Prikaži popust u međuzbroju"
|
||||
|
||||
#. 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 ""
|
||||
"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:"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Web stranica"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
|
@ -0,0 +1,317 @@
|
|||
# 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
|
||||
#
|
||||
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: gezza <geza.nagy@oregional.hu>, 2024\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 "Összes weboldal"
|
||||
|
||||
#. 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 "Költségek"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. 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 "Kuponok és hűség"
|
||||
|
||||
#. 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 "Árengedmény:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Engedményes összeg"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Kész"
|
||||
|
||||
#. 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 "Ajándékkártyák & eTárca"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. 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"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Hűség"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Hűség kupon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Hűség 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 "Hűség programok"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
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
|
||||
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"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Vevői rendelések"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Megosztás"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Hivatkozás megosztása"
|
||||
|
||||
#. 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 "Honlap"
|
||||
|
||||
#. 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 "Ö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 ""
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
# 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: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Semua Website"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"Tidak dapat memproses pembayaran: hadiah yang diterapkan diubah atau telah "
|
||||
"kadaluwarsa."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Tidak dapat menggunakan kode promo:"
|
||||
|
||||
#. 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 "Buat link yang menerapkan kupon dan mengalihkan ke halaman tertentu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Nonaktifkan Hadiah Otomatis"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Diskon & Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Kode diskon atau gift card"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Diskon:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Jumlah dengan diskon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Selesai"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Buat Link Pendek"
|
||||
|
||||
#. 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 atau kode diskon..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Gift card & 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 "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"
|
||||
msgstr "Terakhir Diperbarui oleh"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir Diperbarui pada"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kupon Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program Loyalitas"
|
||||
|
||||
#. 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 "Program-Program Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. 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 "Kode Promo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pesanan Penjualan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Bagikan Link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Bagikan Kartu Loyalitas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Tunjukkan Diskon di Subtotal"
|
||||
|
||||
#. 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 ""
|
||||
"Kupon akan secara otomatis diterapkan saat Anda menambahkan sesuatu ke "
|
||||
"keranjang belanja Anda."
|
||||
|
||||
#. 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 "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
|
||||
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: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 ""
|
||||
"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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,311 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,328 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Tutti i siti web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"Impossibile elaborare il pagamento: la ricompensa applicata è stata "
|
||||
"modificata o è scaduta."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Impossibile applicare il codice promozionale:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Buono 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"
|
||||
msgstr ""
|
||||
"Crea link che applicano un coupon e reindirizzano a una pagina specifica"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Disabilita premi automatici"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Sconti e fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Codice sconto o carta regalo"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Sconto:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Importo scontato"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Completata"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Genera uno 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 "Carta regalo o codice sconto..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Carte regalo e portafoglio elettronico"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Buono sconto fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Programma fedeltà"
|
||||
|
||||
#. 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 "Programmi fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Sito web programma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Codice promozionale"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Metti a disposizione o un coupon o un programma."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Reindirizza"
|
||||
|
||||
#. 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 "Limita la pubblicazione a questo sito web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Ordine di vendita"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Condivisione link"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Condividi carta fedeltà"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Mostra sconto nel subtotale"
|
||||
|
||||
#. 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 ""
|
||||
"Il coupon sarà applicato automaticamente quando aggiungi qualcosa al tuo "
|
||||
"carrello."
|
||||
|
||||
#. 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 "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
|
||||
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: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 "Sito 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."
|
||||
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"
|
||||
|
|
@ -0,0 +1,325 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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サイト"
|
||||
|
||||
#. 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 "ギフトカード & eウォレット"
|
||||
|
||||
#. 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 "eWalletで支払う"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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 "このWebサイトへの公開を制限します。"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "カートに商品を入れると、クーポンが自動的に適用されます。"
|
||||
|
||||
#. 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 "プロモコードは一意にして下さい。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"このプロモーションをお客様と共有することができます。\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で"
|
||||
|
|
@ -0,0 +1,313 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,323 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "모든 웹사이트"
|
||||
|
||||
#. 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 "기프트 카드 및 e월렛"
|
||||
|
||||
#. 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 "e월렛으로 결제"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "장바구니에 상품을 추가하면 쿠폰이 자동으로 적용됩니다."
|
||||
|
||||
#. 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 "프로모션 코드는 고유해야 합니다."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"이 프로모션은 고객과 공유할 수 있습니다.\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월렛"
|
||||
|
|
@ -0,0 +1,313 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,322 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_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 "Rastas kuponas su tokiu pačiu kodu"
|
||||
|
||||
#. 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 "Išlaidos"
|
||||
|
||||
#. 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 "Kuponas"
|
||||
|
||||
#. 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 "Sukūrė"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. 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 "Nuolaidos ir Lojalumo programos"
|
||||
|
||||
#. 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 "Nuolaida:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Nuolaidos suma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Atlikta"
|
||||
|
||||
#. 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 "Dovanų kortelės ir e-piniginė"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lojalumas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Lojalumo programos kuponas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Lojalumo programa"
|
||||
|
||||
#. 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 "Lojalumo programos taisyklės"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
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 ""
|
||||
|
||||
#. 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 "Nukreipti"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pardavimo užsakymas"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pardavimo užsakymo eilutė"
|
||||
|
||||
#. 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 "Dalintis"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Dalintis nuoroda"
|
||||
|
||||
#. 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 "Svetainė"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
|
@ -0,0 +1,324 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Izmaksas"
|
||||
|
||||
#. 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 "Izveidoja"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. 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 "Atlaides kods vai dāvanu karte"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Atlaide:"
|
||||
|
||||
#. 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 "Parādīt vārdu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Gatavs"
|
||||
|
||||
#. 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 "Dāvanu karte vai atlaides kods..."
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Promo kods"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Ierobežot publicēšanu šajā tīmekļa vietnē."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pasūtījums"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Pasūtījuma Rinda"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Rādīt atlaidi starpsummā"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Tīkla vietne"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
|
@ -0,0 +1,311 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,321 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 "Бэлгийн карт & 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 "Буруу эсвэл хугацаа нь дууссан урамшуулалын код."
|
||||
|
||||
#. 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 "eWallet-р төлөх"
|
||||
|
||||
#. 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 "таны ewallet дансанд"
|
||||
|
|
@ -0,0 +1,312 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
# Imran Pathan, 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: Imran Pathan, 2024\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_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 "Tuntutan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Kos"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. 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 "Diskaun:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Jumlah diskaun"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Selesai"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Hasilkan Pautan Pendek"
|
||||
|
||||
#. 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 "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. 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 "Kupon Kesetiaan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program Kesetiaan"
|
||||
|
||||
#. 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 "Program Kesetiaan"
|
||||
|
||||
#. 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 "Program"
|
||||
|
||||
#. 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 "Ubah hala"
|
||||
|
||||
#. 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 "Pesanan Jualan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Barisan Pesanan Jualan"
|
||||
|
||||
#. 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 "Kongsi"
|
||||
|
||||
#. 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 "laman 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."
|
||||
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 ""
|
||||
|
|
@ -0,0 +1,314 @@
|
|||
# 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
|
||||
#
|
||||
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: Rune Restad, 2024\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Kostnader"
|
||||
|
||||
#. 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 "Kupong"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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 "Rabatt og lojalitet"
|
||||
|
||||
#. 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 "Rabatt:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Rabattert beløp"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Fullført"
|
||||
|
||||
#. 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 "Gavekort og 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 "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"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. 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 "Gavekort"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
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 "Lojalitetsprogrammer"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Kampanje-kode"
|
||||
|
||||
#. 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 "Omdiriger"
|
||||
|
||||
#. 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 "Begrens publisering til dette nettstedet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Salgsordre"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Del link"
|
||||
|
||||
#. 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 "Nettsted"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
|
@ -0,0 +1,329 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Alle websites"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"Betaling kan niet worden verwerkt: de toegepaste beloning is gewijzigd of "
|
||||
"verlopen."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Kan de promotiecode niet toepassen:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kortingsbon"
|
||||
|
||||
#. 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 ""
|
||||
"Maak links die een kortingsbon toepassen en omleiden naar een specifieke "
|
||||
"pagina"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Automatische beloningen uitgeschakeld"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Korting & Loyaliteit"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "Kortingscode of cadeaubon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Korting:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Kortingsbedrag"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. 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.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Korte link genereren"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Cadeaubon of kortingscode..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Cadeaubonnen & 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 "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"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Loyaliteit"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Loyaliteitsbon"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Loyaliteitsprogramma"
|
||||
|
||||
#. 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 "Loyaliteitsprogramma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Programma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Programma website"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promotiecode"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Geef een kortingsbon of een programma."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Doorverwijzen"
|
||||
|
||||
#. 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 "Publiceren op deze website beperken."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Verkooporder"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Link delen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Klantenkaart delen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Toon Korting in Subtotaal"
|
||||
|
||||
#. 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 ""
|
||||
"De kortingsbon wordt automatisch toegepast wanneer je iets aan je "
|
||||
"winkelmandje toevoegt."
|
||||
|
||||
#. 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:"
|
||||
|
||||
#. 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
|
||||
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: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 ""
|
||||
"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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,307 @@
|
|||
# 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: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
|
|
@ -0,0 +1,328 @@
|
|||
# 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
|
||||
#
|
||||
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: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon jest wymagany w przypadku programów kuponowych."
|
||||
|
||||
#. 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 "Znaleziono kupon z tym samym kodem."
|
||||
|
||||
#. 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 "Wszystkie witryny"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Nie można zastosować kodu promocyjnego:"
|
||||
|
||||
#. 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 ""
|
||||
"Tworzenie linków, które stosują kupon i przekierowują do określonej strony."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Wyłączone nagrody automatyczne"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Upusty i programy lojalnościowe"
|
||||
|
||||
#. 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 rabatowy lub karta podarunkowa"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Upust:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Kwota upustu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Wykonano"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Wygeneruj krótki 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 "Karta podarunkowa lub kod upustu..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Karty podarunkowe i e-portfel"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Programy lojalnościowe"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Kupon lojalnościowy"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program lojalnościowy"
|
||||
|
||||
#. 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 "Programy lojalnościowe"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. 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 "Strona internetowa programu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Kod promocyjny"
|
||||
|
||||
#. 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 "Dostarcz kupon lub program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Przekieruj"
|
||||
|
||||
#. 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 "Ogranicz publikowanie do tej strony."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Zamówienie sprzedaży"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Link do udostępniania"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Pokaż upust w sumie częściowej"
|
||||
|
||||
#. 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 zostanie automatycznie zastosowany po dodaniu produktu do koszyka."
|
||||
|
||||
#. 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 "Następujący kod promocyjny został zastosowany do Twojego zamówienia:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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
|
||||
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: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 "Strona internetowa"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
|
@ -0,0 +1,330 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Custos"
|
||||
|
||||
#. 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 "Cupão"
|
||||
|
||||
#. 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 "Criado por"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Desconto:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Valor de desconto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. 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.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 "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 ""
|
||||
|
||||
#. 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 "Ú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"
|
||||
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"
|
||||
|
||||
#. 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 "Programa de Fidelização"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regra de Fidelização"
|
||||
|
||||
#. 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 "Programa"
|
||||
|
||||
#. 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 "Código Promocional"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Redirecionar"
|
||||
|
||||
#. 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 "Restringir publicação a este site."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Ordem 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"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Exibir desconto no subtotal"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "in your ewallet"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,326 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "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 "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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Claim"
|
||||
msgstr "Reivindicação"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Custos"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
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 "Cupom"
|
||||
|
||||
#. 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 "Criado por"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
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 "Código de desconto ou vale-presente"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Desconto:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Valor de desconto"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
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.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 "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 "Cartões-presente e carteira digital"
|
||||
|
||||
#. 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 "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"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Fidelidade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regra de Lealdade"
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
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 "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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
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
|
||||
msgid "Redirect"
|
||||
msgstr "Redirecionar"
|
||||
|
||||
#. 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 "Restringir publicação a este site."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
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"
|
||||
|
||||
#. 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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Exibir desconto no subtotal"
|
||||
|
||||
#. 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 ""
|
||||
"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 "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
|
||||
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: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"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
|
@ -0,0 +1,322 @@
|
|||
# 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
|
||||
#
|
||||
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: Maria Muntean, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Un cupon este necesar pentru programele cu cupon."
|
||||
|
||||
#. 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 fost identificat 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Revendicare"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Costuri"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
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"
|
||||
|
||||
#. 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ă"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
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"
|
||||
|
||||
#. 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 "Reducere:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Valoarea redusă"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Generați link scurt"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Loialitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Cupon de loialitate"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program de fidelitate"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Regulă Loialitate"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Website program"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Cod promoțional"
|
||||
|
||||
#. 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 "Furnizați fie un cupon, fie un program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Redirecționare"
|
||||
|
||||
#. 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 "Limitați publicarea pe acest site web."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
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"
|
||||
|
||||
#. 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 "Partajează"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Împarte legatură"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Afișați reducerea în 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 "Cuponul va fi aplicat automat atunci când adăugați 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:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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
|
||||
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."
|
||||
|
||||
#. 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 "Pagină 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."
|
||||
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."
|
||||
|
|
@ -0,0 +1,322 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
"Вы можете поделиться этой акцией со своими клиентами.\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 "в вашем электронном кошельке"
|
||||
|
|
@ -0,0 +1,322 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Náklady"
|
||||
|
||||
#. 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 "Kupón"
|
||||
|
||||
#. 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 "Vytvoril"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. 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 "Zľava:"
|
||||
|
||||
#. 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 "Zobrazovaný názov"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Hotové"
|
||||
|
||||
#. 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 "Darčeková karta alebo zľavový kód..."
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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é"
|
||||
|
||||
#. 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 "Vernostný 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 "Vernostné programy"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
msgid "Loyalty Rule"
|
||||
msgstr "Vernostné pravidlo"
|
||||
|
||||
#. 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 "Program"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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 "Presmerovať"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Objednávka "
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Položka objednávok"
|
||||
|
||||
#. 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
|
||||
#: 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ť"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "Webstrá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."
|
||||
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 ""
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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."
|
||||
|
||||
#. 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 "Zahtevek"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.modify_code_form
|
||||
msgid "Costs"
|
||||
msgstr "Stroški"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Promocijske kode ni bilo mogoče uporabiti:"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. 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 "Popust in zvestoba"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Opravljeno"
|
||||
|
||||
#. 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 "Darilna kartica ali koda za popust"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Darilne kartice in eDenarnica"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. 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 "Kupon zvestobe"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Program zvestobe"
|
||||
|
||||
#. 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 zvestobe"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promocijska koda"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 "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 "Omejitev objav na to spletno stran."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Deli povezavo"
|
||||
|
||||
#. 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
|
||||
#. 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 "Kupon bo samodejno uporabljen, ko dodate nekaj v svojo košarico."
|
||||
|
||||
#. 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 "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
|
||||
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 "Spletna stran"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
# 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: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
|
|
@ -0,0 +1,317 @@
|
|||
# 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"
|
||||
|
|
@ -0,0 +1,333 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#. 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 "Alla webbplatser"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
"Kan inte behandla betalningen: tillämpad belöning har ändrats eller har löpt"
|
||||
" ut."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Det gick inte att tillämpa kampanjkoden:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__coupon_id
|
||||
msgid "Coupon"
|
||||
msgstr "Kupong"
|
||||
|
||||
#. 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 ""
|
||||
"Skapa länkar som tillämpar en kupong och omdirigerar till en specifik sida"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Belöningar för bilar för funktionshindrade"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "Rabatt & Lojalitet"
|
||||
|
||||
#. 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 "Rabatt:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "Rabatterat Pris"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Klar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Skapa kort länk"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Presentkort eller rabattkod..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
msgstr "Presentkort & 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 "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"
|
||||
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å"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Lojalitet"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Lojalitetskupong"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. 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 "Programwebbplats"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Kampanj Kod"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "Provide either a coupon or a program."
|
||||
msgstr "Ge antingen en kupong eller ett program."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Omdirigera"
|
||||
|
||||
#. 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änsa publicering till denna webbplats."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Order"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Orderrad"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Dela länk"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Share Loyalty Card"
|
||||
msgstr "Dela lojalitetskort"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.snippet_options
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Visa rabatt i delsumma"
|
||||
|
||||
#. 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 ""
|
||||
"Kupongen tillämpas automatiskt när du lägger till något i din kundvagn."
|
||||
|
||||
#. 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 "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
|
||||
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: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 "Webbplats"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
# 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: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,325 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "เว็บไซต์ทั้งหมด"
|
||||
|
||||
#. 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 "บัตรของขวัญ & eWallet"
|
||||
|
||||
#. 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 "ชำระเงินด้วย eWallet"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "คูปองจะถูกนำไปใช้โดยอัตโนมัติเมื่อคุณเพิ่มสินค้าในรถเข็นของคุณ"
|
||||
|
||||
#. 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 "รหัสโปรโมชั่นจะต้องไม่ซ้ำกัน"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"คุณสามารถแชร์โปรโมชั่นนี้กับลูกค้าของคุณได้\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 "ในกระเป๋าเงินของคุณ"
|
||||
|
|
@ -0,0 +1,324 @@
|
|||
# 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
|
||||
#
|
||||
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: Tugay Hatıl <tugayh@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
msgid "A coupon is needed for coupon programs."
|
||||
msgstr "Kupon programları için bir kupon gereklidir."
|
||||
|
||||
#. 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 "Aynı koda sahip bir kupon bulundu."
|
||||
|
||||
#. 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 "Tüm web siteleri"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.layout
|
||||
msgid "Could not apply the promo code:"
|
||||
msgstr "Promosyon kodu uygulanamadı:"
|
||||
|
||||
#. 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 ""
|
||||
"Kupon uygulayan ve belirli bir sayfaya yönlendiren bağlantılar oluşturun"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Otomatik Ödüller Devre Dışı Bırakıldı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
msgstr "İndirim ve Sadakat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.reduction_coupon_code
|
||||
msgid "Discount code or gift card"
|
||||
msgstr "İndirim kodu veya hediye kartı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "İndirim:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
msgstr "İndirimli tutar"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Done"
|
||||
msgstr "Biten"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Kısa Bağlantı Oluştur"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Sadakat"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Sadakat Kuponu"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Sadakat 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 "Sadakat Programları"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_rule
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Kampanya"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Program Websitesi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
msgstr "Promosyon kodu"
|
||||
|
||||
#. 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 "Bir kupon veya bir program sağlayın."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__redirect
|
||||
msgid "Redirect"
|
||||
msgstr "Yeniden yönlendir"
|
||||
|
||||
#. 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 web sitesinde yayınlamayı kısıtlayın."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Satış Siparişi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order_line
|
||||
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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Bağlantı Paylaş"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "İndirimi Ara Toplamda Göster"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid "The following promo code was applied on your order:"
|
||||
msgstr "Siparişinize aşağıdaki promosyon kodu uygulandı:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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
|
||||
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: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 "Websitesi"
|
||||
|
||||
#. 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 ""
|
||||
"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"
|
||||
|
|
@ -0,0 +1,317 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_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 ""
|
||||
"Ви можете поділитися цією акцією зі своїми клієнтами.\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 "на вашому електронному гаманці"
|
||||
|
|
@ -0,0 +1,325 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_loyalty/wizard/sale_coupon_share.py:0
|
||||
#, python-format
|
||||
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á. "
|
||||
|
||||
#. 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."
|
||||
|
||||
#. 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 "Tất cả trang web"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_loyalty_program__ecommerce_ok
|
||||
msgid "Available on Website"
|
||||
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."
|
||||
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."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: 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í"
|
||||
|
||||
#. 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: "
|
||||
|
||||
#. 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
|
||||
#: 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ể"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_sale_order__disabled_auto_rewards
|
||||
msgid "Disabled Auto Rewards"
|
||||
msgstr "Đã tắt phần thưởng tự động"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_discount_loyalty_type_config
|
||||
msgid "Discount & Loyalty"
|
||||
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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discount:"
|
||||
msgstr "Chiết khấu:"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.cart_discount
|
||||
msgid "Discounted amount"
|
||||
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
|
||||
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"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
msgid "Generate Short Link"
|
||||
msgstr "Tạo link rút gọn"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.sale_coupon_result
|
||||
msgid "Gift card or discount code..."
|
||||
msgstr "Thẻ quà tặng hoặc mã giảm giá..."
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_gift_ewallet_type_config
|
||||
msgid "Gift cards & eWallet"
|
||||
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
|
||||
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"
|
||||
|
||||
#. 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 "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.ui.menu,name:website_sale_loyalty.menu_loyalty
|
||||
msgid "Loyalty"
|
||||
msgstr "Khách hàng thân thiết"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_card
|
||||
msgid "Loyalty Coupon"
|
||||
msgstr "Phiếu giảm giá khách hàng thân thiết"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_loyalty_program
|
||||
msgid "Loyalty Program"
|
||||
msgstr "Chương trình khách hàng thân thiết"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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ử"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_id
|
||||
msgid "Program"
|
||||
msgstr "Chương trình"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__program_website_id
|
||||
msgid "Program Website"
|
||||
msgstr "Website chương trình"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__promo_code
|
||||
msgid "Promo Code"
|
||||
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
|
||||
msgid "Provide either a coupon or a program."
|
||||
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
|
||||
msgid "Redirect"
|
||||
msgstr "Chuyển hướng"
|
||||
|
||||
#. 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 "Hạn chế phát hành cho website này"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model:ir.model,name:website_sale_loyalty.model_sale_order
|
||||
msgid "Sales Order"
|
||||
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"
|
||||
|
||||
#. 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
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_loyalty.field_coupon_share__share_link
|
||||
msgid "Share Link"
|
||||
msgstr "Chia sẻ liên kết"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_loyalty.coupon_share_view_form
|
||||
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
|
||||
msgid "Show Discount in Subtotal"
|
||||
msgstr "Hiển thị Chiết khấu trong Thành tiền"
|
||||
|
||||
#. 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ỏ. "
|
||||
|
||||
#. 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: "
|
||||
|
||||
#. 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
|
||||
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. "
|
||||
|
||||
#. 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 "Trang 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."
|
||||
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ó"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,314 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,325 @@
|
|||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "所有网站"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "当您在购物车中添加商品时,将自动使用优惠券。"
|
||||
|
||||
#. 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 "促销代码必须是惟一的。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"您可以将优惠券分享给您的客户.\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 "在您的电子钱包当中"
|
||||
|
|
@ -0,0 +1,322 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_loyalty
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "所有網站"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. 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 "你將貨品加入至購物車時,優惠券會自動套用。"
|
||||
|
||||
#. 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 "推廣代碼必須是唯一的。"
|
||||
|
||||
#. module: website_sale_loyalty
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"您可以與您的客戶分享此促銷活動。\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 "在你的電子錢包內"
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import loyalty_card
|
||||
from . import loyalty_program
|
||||
from . import loyalty_rule
|
||||
from . import sale_order_line
|
||||
from . import sale_order
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# -*- 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'
|
||||
|
||||
def action_coupon_share(self):
|
||||
self.ensure_one()
|
||||
return self.env['coupon.share'].create_share_action(coupon=self)
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
class LoyaltyProgram(models.Model):
|
||||
_name = 'loyalty.program'
|
||||
_inherit = ['loyalty.program', 'website.multi.mixin']
|
||||
|
||||
ecommerce_ok = fields.Boolean("Available on Website", default=True)
|
||||
|
||||
def action_program_share(self):
|
||||
self.ensure_one()
|
||||
return self.env['coupon.share'].create_share_action(program=self)
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# -*- 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')
|
||||
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')
|
||||
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)],
|
||||
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:
|
||||
website_checks = (res['website_id'], False) if res['website_id'] else (False,)
|
||||
for website in website_checks:
|
||||
val = (res['code'], website)
|
||||
if val in existing_codes:
|
||||
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)]):
|
||||
raise ValidationError(_('A coupon with the same code was found.'))
|
||||
|
|
@ -0,0 +1,215 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
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.http import request
|
||||
|
||||
|
||||
class SaleOrder(models.Model):
|
||||
_inherit = "sale.order"
|
||||
|
||||
# List of disabled rewards for automatic claim
|
||||
disabled_auto_rewards = fields.Many2many("loyalty.reward", relation="sale_order_disabled_auto_rewards_rel")
|
||||
|
||||
def _get_program_domain(self):
|
||||
res = super()._get_program_domain()
|
||||
# Replace `sale_ok` leaf with `ecommerce_ok` if order is linked to a website
|
||||
if self.website_id:
|
||||
for idx, leaf in enumerate(res):
|
||||
if leaf[0] != 'sale_ok':
|
||||
continue
|
||||
res[idx] = ('ecommerce_ok', '=', True)
|
||||
return expression.AND([res, [('website_id', 'in', (self.website_id.id, False))]])
|
||||
return res
|
||||
|
||||
def _get_trigger_domain(self):
|
||||
res = super()._get_trigger_domain()
|
||||
# Replace `sale_ok` leaf with `ecommerce_ok` if order is linked to a website
|
||||
if self.website_id:
|
||||
for idx, leaf in enumerate(res):
|
||||
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 res
|
||||
|
||||
def _try_pending_coupon(self):
|
||||
if not request:
|
||||
return False
|
||||
|
||||
pending_coupon_code = request.session.get('pending_coupon_code')
|
||||
if pending_coupon_code:
|
||||
status = self._try_apply_code(pending_coupon_code)
|
||||
if 'error' not in status: # Returns an array if everything went right
|
||||
request.session.pop('pending_coupon_code')
|
||||
if len(status) == 1:
|
||||
coupon, rewards = next(iter(status.items()))
|
||||
if len(rewards) == 1 and not rewards.multi_product:
|
||||
self._apply_program_reward(rewards, coupon)
|
||||
return status
|
||||
return True
|
||||
|
||||
def _update_programs_and_rewards(self):
|
||||
for order in self:
|
||||
order._try_pending_coupon()
|
||||
return super()._update_programs_and_rewards()
|
||||
|
||||
def _auto_apply_rewards(self):
|
||||
"""
|
||||
Tries to auto apply claimable rewards.
|
||||
|
||||
It must answer to the following rules:
|
||||
- Must not be from a nominative program
|
||||
- The reward must be the only reward of the program
|
||||
- The reward may not be a multi product reward
|
||||
|
||||
Returns True if any reward was claimed else False
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
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:
|
||||
continue
|
||||
try:
|
||||
res = self._apply_program_reward(rewards, coupon)
|
||||
if 'error' not in res:
|
||||
claimed_reward_count += 1
|
||||
except UserError:
|
||||
pass
|
||||
|
||||
return bool(claimed_reward_count)
|
||||
|
||||
def _compute_website_order_line(self):
|
||||
""" This method will merge multiple discount lines generated by a same program
|
||||
into a single one (temporary line with `new()`).
|
||||
This case will only occur when the program is a discount applied on multiple
|
||||
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
|
||||
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:
|
||||
line 1: 10% discount on product with tax `A` - $15
|
||||
line 2: 10% discount on product with tax `B` - $11.5
|
||||
line 3: 10% discount on product with tax `C` - $10
|
||||
would be `hidden` and `replaced` by
|
||||
line 1: 10% discount - $36.5
|
||||
|
||||
Note: The line will be created without tax(es) and the amount will be computed
|
||||
depending if B2B or B2C is enabled.
|
||||
"""
|
||||
super()._compute_website_order_line()
|
||||
for order in self:
|
||||
grouped_order_lines = defaultdict(lambda: self.env['sale.order.line'])
|
||||
for line in order.order_line:
|
||||
if line.reward_id and line.coupon_id:
|
||||
grouped_order_lines[(line.reward_id, line.coupon_id, line.reward_identifier_code)] |= line
|
||||
new_lines = self.env['sale.order.line']
|
||||
for lines in grouped_order_lines.values():
|
||||
if lines.reward_id.reward_type != 'discount':
|
||||
continue
|
||||
new_lines += self.env['sale.order.line'].new({
|
||||
'product_id': lines[0].product_id.id,
|
||||
'tax_id': 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,
|
||||
'order_id': order.id,
|
||||
'is_reward_line': True,
|
||||
'coupon_id': lines.coupon_id,
|
||||
'reward_id': lines.reward_id,
|
||||
})
|
||||
if new_lines:
|
||||
order.website_order_line += new_lines
|
||||
|
||||
def _compute_cart_info(self):
|
||||
super(SaleOrder, self)._compute_cart_info()
|
||||
for order in self:
|
||||
reward_lines = order.website_order_line.filtered(lambda line: line.is_reward_line)
|
||||
order.cart_quantity -= int(sum(reward_lines.mapped('product_uom_qty')))
|
||||
|
||||
def get_promo_code_error(self, delete=True):
|
||||
error = request.session.get('error_promo_code')
|
||||
if error and delete:
|
||||
request.session.pop('error_promo_code')
|
||||
return error
|
||||
|
||||
def get_promo_code_success_message(self, delete=True):
|
||||
if not request.session.get('successful_code'):
|
||||
return False
|
||||
code = request.session.get('successful_code')
|
||||
if delete:
|
||||
request.session.pop('successful_code')
|
||||
return code
|
||||
|
||||
def _cart_update(self, product_id, line_id=None, add_qty=0, set_qty=0, **kwargs):
|
||||
|
||||
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
|
||||
|
||||
res = super()._cart_update(
|
||||
product_id, line_id=line_id, add_qty=add_qty, set_qty=set_qty, **kwargs
|
||||
)
|
||||
self._update_programs_and_rewards()
|
||||
self._auto_apply_rewards()
|
||||
return res
|
||||
|
||||
def _get_free_shipping_lines(self):
|
||||
self.ensure_one()
|
||||
return self.order_line.filtered(lambda l: l.reward_id.reward_type == 'shipping')
|
||||
|
||||
def _allow_nominative_programs(self):
|
||||
if not request or not hasattr(request, 'website'):
|
||||
return super()._allow_nominative_programs()
|
||||
return not request.website.is_public_user() and super()._allow_nominative_programs()
|
||||
|
||||
@api.autovacuum
|
||||
def _gc_abandoned_coupons(self, *args, **kwargs):
|
||||
"""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)))
|
||||
so_to_reset = self.env['sale.order'].search([
|
||||
('state', '=', 'draft'),
|
||||
('write_date', '<', validity),
|
||||
('website_id', '!=', False),
|
||||
('applied_coupon_ids', '!=', False),
|
||||
])
|
||||
so_to_reset.applied_coupon_ids = False
|
||||
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)
|
||||
|
||||
return {
|
||||
'promo_code_success': promo_code_success,
|
||||
'promo_code_error': promo_code_error,
|
||||
}
|
||||
|
||||
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
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# -*- 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 _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 unlink(self):
|
||||
if self.env.context.get('website_sale_loyalty_delete', False):
|
||||
disabled_rewards_per_order = defaultdict(lambda: self.env['loyalty.reward'])
|
||||
for line in self:
|
||||
if line.reward_id:
|
||||
disabled_rewards_per_order[line.order_id] |= line.reward_id
|
||||
for order, rewards in disabled_rewards_per_order.items():
|
||||
order.disabled_auto_rewards += rewards
|
||||
return super().unlink()
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_coupon_share_manager,access_coupon_share_manager,model_coupon_share,sales_team.group_sale_manager,1,1,1,0
|
||||
|
Binary file not shown.
|
After Width: | Height: | Size: 5.8 KiB |
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="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>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
|
|
@ -0,0 +1,36 @@
|
|||
/** @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,13 @@
|
|||
/** @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,90 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
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'
|
||||
},
|
||||
[
|
||||
// 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.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'
|
||||
},
|
||||
{
|
||||
content: 'validate the gift card',
|
||||
trigger: 'form[name="coupon_code"] .a-submit',
|
||||
},
|
||||
{
|
||||
content: 'check gift card line',
|
||||
trigger: '.td-product_name: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"]',
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: 'text 10PERCENT'
|
||||
},
|
||||
{
|
||||
content: 'validate the gift card',
|
||||
trigger: 'form[name="coupon_code"] .a-submit',
|
||||
},
|
||||
{
|
||||
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: '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
|
||||
},
|
||||
],
|
||||
);
|
||||
|
|
@ -0,0 +1,151 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
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,
|
||||
url: '/shop?search=Small%20Cabinet',
|
||||
},
|
||||
[
|
||||
/* 1. Buy 1 Small Cabinet, enable coupon code & insert 10% code */
|
||||
{
|
||||
content: "select Small Cabinet",
|
||||
extra_trigger: '.oe_search_found',
|
||||
trigger: '.oe_product_cart a:contains("Small Cabinet")',
|
||||
},
|
||||
{
|
||||
content: "add 2 Small Cabinet into cart",
|
||||
trigger: '#product_details input[name="add_qty"]',
|
||||
run: "text 2",
|
||||
},
|
||||
{
|
||||
content: "click on 'Add to Cart' button",
|
||||
trigger: "a:contains(ADD TO CART)",
|
||||
},
|
||||
tourUtils.goToCart({quantity: 2}),
|
||||
{
|
||||
content: "click on 'I have a promo code'",
|
||||
extra_trigger: '.show_coupon',
|
||||
trigger: '.show_coupon',
|
||||
},
|
||||
{
|
||||
content: "insert promo code 'testcode'",
|
||||
extra_trigger: 'form[name="coupon_code"]',
|
||||
trigger: 'form[name="coupon_code"] input[name="promo"]',
|
||||
run: "text testcode",
|
||||
},
|
||||
{
|
||||
content: "validate the coupon",
|
||||
trigger: 'form[name="coupon_code"] .a-submit',
|
||||
},
|
||||
{
|
||||
content: "check reward product",
|
||||
trigger: '.td-product_name:contains("10.0% discount on total amount")',
|
||||
run: function () {}, // it's a check
|
||||
},
|
||||
{
|
||||
content: "check loyalty points",
|
||||
trigger: '.oe_website_sale_gift_card span:contains("372.03 Points")',
|
||||
run: function () {}, // it's a check
|
||||
},
|
||||
/* 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")',
|
||||
run: function () {
|
||||
ajax.jsonRpc('/web/dataset/call_kw', 'call', {
|
||||
model: 'account.tax',
|
||||
method: 'create',
|
||||
args: [{
|
||||
'name':'15% tax incl ' + _.now(),
|
||||
'amount': 15,
|
||||
}],
|
||||
kwargs: {},
|
||||
}).then(function (tax_id) {
|
||||
ajax.jsonRpc('/web/dataset/call_kw', 'call', {
|
||||
model: 'product.template',
|
||||
method: 'create',
|
||||
args: [{
|
||||
'name': 'Taxed Product',
|
||||
'taxes_id': [([6, false, [tax_id]])],
|
||||
'list_price': 100,
|
||||
'website_published': true,
|
||||
}],
|
||||
kwargs: {},
|
||||
}).then(function (data) {
|
||||
location.href = '/shop';
|
||||
});
|
||||
});
|
||||
},
|
||||
},
|
||||
{
|
||||
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.goToCart({quantity: 3}),
|
||||
{
|
||||
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",
|
||||
},
|
||||
{
|
||||
content: "check reduction amount got recomputed when changing qty",
|
||||
trigger: '.oe_currency_value:contains("-106.00")',
|
||||
run: function () {}, // it's a check
|
||||
},
|
||||
{
|
||||
content: "add more Small Cabinet into cart",
|
||||
trigger: '#cart_products input.js_quantity',
|
||||
run: "text 4",
|
||||
},
|
||||
{
|
||||
content: "check free product is added",
|
||||
trigger: '#wrap:has(.td-product_name:contains("Free Product - Small Cabinet"))',
|
||||
run: function () {}, // it's a check
|
||||
},
|
||||
{
|
||||
content: "remove one cabinet from cart",
|
||||
trigger: '#cart_products input.js_quantity[value="4"]',
|
||||
run: "text 3",
|
||||
},
|
||||
{
|
||||
content: "check free product is removed",
|
||||
trigger: '#wrap:not(:has(.td-product_name:contains("Free Product - Small Cabinet")))',
|
||||
run: function () {}, // it's a check
|
||||
},
|
||||
/* 4. Check /shop/payment does not break the `merged discount lines split per tax` (eg: with _compute_tax_id) */
|
||||
{
|
||||
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
|
||||
},
|
||||
]
|
||||
);
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_apply_pending_coupon
|
||||
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
|
||||
|
|
@ -0,0 +1,89 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.tests import tagged, HttpCase
|
||||
|
||||
from odoo.addons.sale_loyalty.tests.common import TestSaleCouponNumbersCommon
|
||||
from odoo.addons.website.tools import MockRequest
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestSaleCouponApplyPending(HttpCase, TestSaleCouponNumbersCommon):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
|
||||
self.WebsiteSaleController = WebsiteSale()
|
||||
|
||||
self.website = self.env['website'].browse(1)
|
||||
self.global_program = self.p1
|
||||
self.coupon_program = self.env['loyalty.program'].create({
|
||||
'name': 'One Free Product',
|
||||
'program_type': 'coupons',
|
||||
'rule_ids': [(0, 0, {
|
||||
'minimum_qty': 2,
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'product',
|
||||
'reward_product_id': self.largeCabinet.id,
|
||||
})]
|
||||
})
|
||||
self.env['loyalty.generate.wizard'].with_context(active_id=self.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([
|
||||
('state', '=', 'installed'),
|
||||
]).mapped('name'))
|
||||
for _ in http._generate_routing_rules(installed_modules, nodb_only=False):
|
||||
pass
|
||||
|
||||
def test_01_activate_coupon_with_existing_program(self):
|
||||
order = self.empty_order
|
||||
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)
|
||||
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.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")
|
||||
|
||||
def test_02_pending_coupon_with_existing_program(self):
|
||||
order = self.empty_order
|
||||
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)
|
||||
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)
|
||||
promo_sol = (order.order_line - cabinet_sol)
|
||||
self.assertTrue(cabinet_sol)
|
||||
self.assertEqual(cabinet_sol.price_unit, 320)
|
||||
self.assertEqual(cabinet_sol.price_total, 320)
|
||||
self.assertEqual(promo_sol.price_total, -32)
|
||||
self.assertEqual(order.amount_tax, 0)
|
||||
self.assertEqual(order.cart_quantity, 1)
|
||||
self.assertEqual(order.amount_total, 288, "The order total should equal 288: 320 - 10%")
|
||||
|
||||
self.WebsiteSaleController.activate_coupon(self.coupon.code)
|
||||
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.WebsiteSaleController.cart_update_json(self.largeCabinet.id, add_qty=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.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%")
|
||||
|
|
@ -0,0 +1,81 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.tests.common import HttpCase
|
||||
from odoo.tests import tagged
|
||||
from odoo.addons.website.tools import MockRequest
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestFreeProductReward(HttpCase):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
|
||||
self.WebsiteSaleController = WebsiteSale()
|
||||
self.website = self.env['website'].browse(1)
|
||||
|
||||
self.sofa = self.env['product.product'].create({
|
||||
'name': 'Test Sofa',
|
||||
'list_price': 2950.0,
|
||||
'website_published': True,
|
||||
})
|
||||
|
||||
self.carpet = self.env['product.product'].create({
|
||||
'name': 'Test Carpet',
|
||||
'list_price': 500.0,
|
||||
'website_published': True,
|
||||
})
|
||||
|
||||
# Disable any other program
|
||||
self.program = self.env['loyalty.program'].search([]).write({'active': False})
|
||||
|
||||
self.program = self.env['loyalty.program'].create({
|
||||
'name': 'Get a product for free',
|
||||
'program_type': 'promotion',
|
||||
'applies_on': 'current',
|
||||
'trigger': 'auto',
|
||||
'rule_ids': [(0, 0, {
|
||||
'minimum_qty': 1,
|
||||
'minimum_amount': 0.00,
|
||||
'reward_point_amount': 1,
|
||||
'reward_point_mode': 'order',
|
||||
'product_ids': self.sofa,
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'product',
|
||||
'reward_product_id': self.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):
|
||||
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)
|
||||
self.WebsiteSaleController.claim_reward(self.program.reward_ids[0].id)
|
||||
self.WebsiteSaleController.cart_update_json(self.carpet.id, set_qty=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")
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
# 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
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestSaleCouponMultiwebsite(TestSaleCouponNumbersCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.website = cls.env['website'].browse(1)
|
||||
cls.website2 = cls.env['website'].create({'name': 'website 2'})
|
||||
|
||||
def test_01_multiwebsite_checks(self):
|
||||
""" Ensure the multi website compliance of programs and coupons, both in
|
||||
backend and frontend.
|
||||
"""
|
||||
order = self.empty_order
|
||||
self.env['sale.order.line'].create({
|
||||
'product_id': self.largeCabinet.id,
|
||||
'name': 'Large Cabinet',
|
||||
'product_uom_qty': 2.0,
|
||||
'order_id': order.id,
|
||||
})
|
||||
|
||||
def _remove_reward():
|
||||
order.order_line.filtered('is_reward_line').unlink()
|
||||
self.assertEqual(len(order.order_line.ids), 1, "Program should have been removed")
|
||||
|
||||
def _apply_code(code, backend=True):
|
||||
try:
|
||||
self._apply_promo_code(order, code)
|
||||
except UserError as e:
|
||||
if backend:
|
||||
raise e
|
||||
|
||||
# ==========================================
|
||||
# ========== Programs (with code) ==========
|
||||
# ==========================================
|
||||
|
||||
# 1. Backend - Generic
|
||||
_apply_code(self.p1.rule_ids.code)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic promo program")
|
||||
_remove_reward()
|
||||
|
||||
# 2. Frontend - Generic
|
||||
with MockRequest(self.env, website=self.website):
|
||||
_apply_code(self.p1.rule_ids.code, False)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic promo program (2)")
|
||||
_remove_reward()
|
||||
|
||||
# make program specific
|
||||
self.p1.website_id = self.website.id
|
||||
# 3. Backend - Specific - sale_ok disabled
|
||||
self.p1.sale_ok = False
|
||||
with self.assertRaises(UserError):
|
||||
_apply_code(self.p1.rule_ids.code) # the program is not enabled for Sales (backend)
|
||||
|
||||
# 3.5. Backend - Specific - sale_ok enabled
|
||||
self.p1.sale_ok = True
|
||||
_apply_code(self.p1.rule_ids.code)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is enabled for Sales(backend)")
|
||||
_remove_reward()
|
||||
|
||||
# 4. Frontend - Specific - Correct website
|
||||
order.website_id = self.website.id
|
||||
with MockRequest(self.env, website=self.website):
|
||||
_apply_code(self.p1.rule_ids.code, False)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a specific promo program for the correct website")
|
||||
_remove_reward()
|
||||
|
||||
# 5. Frontend - Specific - Wrong website
|
||||
self.p1.website_id = self.website2.id
|
||||
with MockRequest(self.env, website=self.website):
|
||||
_apply_code(self.p1.rule_ids.code, False)
|
||||
self.assertEqual(len(order.order_line.ids), 1, "Should not get the reward as wrong website")
|
||||
|
||||
# ==============================
|
||||
# =========== Coupons ==========
|
||||
# ==============================
|
||||
|
||||
order.website_id = False
|
||||
self.env['loyalty.generate.wizard'].with_context(active_id=self.discount_coupon_program.id).create({
|
||||
'coupon_qty': 4,
|
||||
'points_granted': 1,
|
||||
}).generate_coupons()
|
||||
coupons = self.discount_coupon_program.coupon_ids
|
||||
|
||||
# 1. Backend - Generic
|
||||
_apply_code(coupons[0].code)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic coupon program")
|
||||
_remove_reward()
|
||||
|
||||
# 2. Frontend - Generic
|
||||
with MockRequest(self.env, website=self.website):
|
||||
_apply_code(coupons[1].code, False)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic coupon program (2)")
|
||||
_remove_reward()
|
||||
|
||||
# make program specific
|
||||
self.discount_coupon_program.website_id = self.website.id
|
||||
# 3. Backend - Specific - sale_ok disabled
|
||||
self.discount_coupon_program.sale_ok = False
|
||||
with self.assertRaises(UserError):
|
||||
_apply_code(coupons[2].code) # the program is not enabled for Sales (backend)
|
||||
|
||||
# 3.5. Backend - Specific - sale_ok enabled
|
||||
self.discount_coupon_program.sale_ok = True
|
||||
_apply_code(coupons[2].code)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is enabled for Sales(backend)")
|
||||
_remove_reward()
|
||||
|
||||
# 4. Frontend - Specific - Correct website
|
||||
order.website_id = self.website.id
|
||||
with MockRequest(self.env, website=self.website):
|
||||
_apply_code(coupons[2].code, False)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a specific coupon program for the correct website")
|
||||
_remove_reward()
|
||||
|
||||
# 5. Frontend - Specific - Wrong website
|
||||
self.discount_coupon_program.website_id = self.website2.id
|
||||
with MockRequest(self.env, website=self.website):
|
||||
_apply_code(coupons[3].code, False)
|
||||
self.assertEqual(len(order.order_line.ids), 1, "Should not get the reward as wrong website")
|
||||
|
||||
# ========================================
|
||||
# ========== Programs (no code) ==========
|
||||
# ========================================
|
||||
|
||||
order.website_id = False
|
||||
self.p1.website_id = False
|
||||
self.p1.rule_ids.code = False
|
||||
self.p1.trigger = 'auto'
|
||||
self.p1.rule_ids.mode = 'auto'
|
||||
|
||||
# 1. Backend - Generic
|
||||
all_programs = self.env['loyalty.program'].search([])
|
||||
self._auto_rewards(order, all_programs)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic promo program")
|
||||
|
||||
# 2. Frontend - Generic
|
||||
with MockRequest(self.env, website=self.website):
|
||||
self._auto_rewards(order, all_programs)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic promo program (2)")
|
||||
|
||||
# make program specific
|
||||
self.p1.website_id = self.website.id
|
||||
# 3. Backend - Specific
|
||||
self.p1.sale_ok = False
|
||||
self._auto_rewards(order, all_programs)
|
||||
self.assertEqual(len(order.order_line.ids), 1, "The program is not enabled for Sales (backend)")
|
||||
|
||||
# 3.5. Backend - Specific - sale_ok enabled
|
||||
self.p1.sale_ok = True
|
||||
self._auto_rewards(order, all_programs)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a generic promo program")
|
||||
|
||||
# 4. Frontend - Specific - Correct website
|
||||
order.website_id = self.website.id
|
||||
with MockRequest(self.env, website=self.website):
|
||||
self._auto_rewards(order, all_programs)
|
||||
self.assertEqual(len(order.order_line.ids), 2, "Should get the discount line as it is a specific promo program for the correct website")
|
||||
|
||||
# 5. Frontend - Specific - Wrong website
|
||||
self.p1.website_id = self.website2.id
|
||||
with MockRequest(self.env, website=self.website):
|
||||
self._auto_rewards(order, all_programs)
|
||||
self.assertEqual(len(order.order_line.ids), 1, "Should not get the reward as wrong website")
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import date, timedelta
|
||||
from freezegun import freeze_time
|
||||
|
||||
from odoo import Command
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment.tests.http_common import PaymentHttpCommon
|
||||
from odoo.addons.sale_loyalty.tests.common import TestSaleCouponCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestShopLoyaltyTransaction(PaymentHttpCommon, TestSaleCouponCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.website = cls.env.company.website_id
|
||||
if not cls.website:
|
||||
cls.website = cls.env.ref('website.default_website')
|
||||
cls.website.company_id = cls.env.company
|
||||
|
||||
@mute_logger('odoo.http')
|
||||
def test_expired_reward_validation(self):
|
||||
"""Ensure payments don't process if any applied reward is no longer valid."""
|
||||
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
|
||||
|
||||
self.env['loyalty.generate.wizard'].with_context(active_id=program.id).create({
|
||||
'coupon_qty': 1,
|
||||
'points_granted': 100,
|
||||
}).generate_coupons()
|
||||
|
||||
order.write({
|
||||
'partner_id': self.portal_partner.id,
|
||||
'website_id': self.website.id,
|
||||
'message_partner_ids': self.portal_partner.ids,
|
||||
'order_line': [Command.create({
|
||||
'product_id': self.product_a.id,
|
||||
})],
|
||||
})
|
||||
self._apply_promo_code(order, program.coupon_ids.code)
|
||||
|
||||
with freeze_time(program.date_to + timedelta(days=1)):
|
||||
self.authenticate(self.portal_user.login, self.portal_user.login)
|
||||
tx_response = self._make_json_rpc_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,
|
||||
'flow': 'direct',
|
||||
'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.",
|
||||
)
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
# 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.addons.website.tools import MockRequest
|
||||
from odoo.addons.website_sale_loyalty.controllers.main import WebsiteSale
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestClaimReward(TransactionCase):
|
||||
|
||||
def test_claim_reward_with_multi_product(self):
|
||||
WebsiteSaleController = WebsiteSale()
|
||||
|
||||
tag = self.env['product.tag'].create({
|
||||
'name': 'multi reward',
|
||||
})
|
||||
|
||||
product1, product2 = self.env['product.product'].create([
|
||||
{
|
||||
'name': 'Test Product',
|
||||
'list_price': 10.0,
|
||||
'product_tag_ids': tag,
|
||||
}, {
|
||||
'name': 'Test Product 2',
|
||||
'list_price': 20.0,
|
||||
'product_tag_ids': tag,
|
||||
}])
|
||||
|
||||
partner = self.env['res.partner'].create({
|
||||
'name': 'Test Customer',
|
||||
'email': 'test@example.com',
|
||||
})
|
||||
|
||||
promo_program = self.env['loyalty.program'].create({
|
||||
'name': 'Free Products',
|
||||
'program_type': 'promotion',
|
||||
'applies_on': 'current',
|
||||
'trigger': 'auto',
|
||||
'rule_ids': [Command.create({
|
||||
'minimum_qty': 1,
|
||||
'minimum_amount': 0.00,
|
||||
'reward_point_amount': 3,
|
||||
})],
|
||||
'reward_ids': [Command.create({
|
||||
'reward_type': 'product',
|
||||
'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,
|
||||
})],
|
||||
})
|
||||
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))
|
||||
|
||||
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')
|
||||
|
|
@ -0,0 +1,475 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from datetime import timedelta
|
||||
|
||||
from odoo import fields
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import HttpCase, TransactionCase, tagged
|
||||
|
||||
from odoo.addons.sale.tests.test_sale_product_attribute_value_config import (
|
||||
TestSaleProductAttributeValueCommon,
|
||||
)
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class WebsiteSaleLoyaltyTestUi(TestSaleProductAttributeValueCommon, HttpCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.env.ref('base.user_admin').write({
|
||||
'company_id': cls.env.company.id,
|
||||
'company_ids': [(4, cls.env.company.id)],
|
||||
'name': 'Mitchell Admin',
|
||||
'street': '215 Vine St',
|
||||
'phone': '+1 555-555-5555',
|
||||
'city': 'Scranton',
|
||||
'zip': '18503',
|
||||
'country_id': cls.env.ref('base.us').id,
|
||||
'state_id': cls.env.ref('base.state_us_39').id,
|
||||
})
|
||||
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()
|
||||
|
||||
def test_01_admin_shop_sale_loyalty_tour(self):
|
||||
if self.env['ir.module.module']._get('payment_custom').state != 'installed':
|
||||
self.skipTest("Transfer provider is not installed")
|
||||
|
||||
transfer_provider = self.env.ref('payment.payment_provider_transfer')
|
||||
transfer_provider.sudo().write({
|
||||
'state': 'enabled',
|
||||
'is_published': True,
|
||||
'company_id': self.env.company.id,
|
||||
})
|
||||
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)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
|
||||
free_large_cabinet = self.env['product.product'].create({
|
||||
'name': 'Free Product - Small Cabinet',
|
||||
'type': 'service',
|
||||
'supplier_taxes_id': False,
|
||||
'sale_ok': False,
|
||||
'purchase_ok': False,
|
||||
'invoice_policy': 'order',
|
||||
'default_code': 'FREELARGECABINET',
|
||||
'categ_id': self.env.ref('product.product_category_all').id,
|
||||
'taxes_id': False,
|
||||
})
|
||||
|
||||
ten_percent = self.env['product.product'].create({
|
||||
'name': '10.0% discount on total amount',
|
||||
'type': 'service',
|
||||
'supplier_taxes_id': False,
|
||||
'sale_ok': False,
|
||||
'purchase_ok': False,
|
||||
'invoice_policy': 'order',
|
||||
'default_code': '10PERCENTDISC',
|
||||
'categ_id': self.env.ref('product.product_category_all').id,
|
||||
'taxes_id': False,
|
||||
})
|
||||
|
||||
self.env['loyalty.program'].search([]).write({'active': False})
|
||||
|
||||
self.env['loyalty.program'].create({
|
||||
'name': 'Buy 4 Small Cabinets, get one for free',
|
||||
'trigger': 'auto',
|
||||
'rule_ids': [(0, 0, {
|
||||
'minimum_qty': 4,
|
||||
'product_ids': large_cabinet,
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'product',
|
||||
'reward_product_id': large_cabinet.id,
|
||||
'discount_line_product_id': free_large_cabinet.id,
|
||||
})]
|
||||
})
|
||||
|
||||
self.env['loyalty.program'].create({
|
||||
'name': 'Code for 10% on orders',
|
||||
'trigger': 'with_code',
|
||||
'rule_ids': [(0, 0, {
|
||||
'mode': 'with_code',
|
||||
'code': 'testcode',
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount': 10,
|
||||
'discount_mode': 'percent',
|
||||
'discount_applicability': 'order',
|
||||
'discount_line_product_id': ten_percent.id,
|
||||
})],
|
||||
})
|
||||
|
||||
vip_program = self.env['loyalty.program'].create({
|
||||
'name': 'VIP',
|
||||
'trigger': 'auto',
|
||||
'program_type': 'loyalty',
|
||||
'portal_visible': True,
|
||||
'applies_on': 'both',
|
||||
'rule_ids': [(0, 0, {
|
||||
'mode': 'auto',
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount': 21,
|
||||
'discount_mode': 'percent',
|
||||
'discount_applicability': 'order',
|
||||
'required_points': 50,
|
||||
})],
|
||||
})
|
||||
|
||||
self.env['loyalty.card'].create({
|
||||
'partner_id': self.env.ref('base.partner_admin').id,
|
||||
'program_id': vip_program.id,
|
||||
'point_name': "Points",
|
||||
'points': 371.03,
|
||||
})
|
||||
|
||||
self.env.ref("website_sale.reduction_code").write({"active": True})
|
||||
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)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
self.env['product.product'].create({
|
||||
'name': 'TEST - Small Drawer',
|
||||
'list_price': 50,
|
||||
'type': 'consu',
|
||||
'is_published': True,
|
||||
'sale_ok': True,
|
||||
'public_categ_ids': [(4, public_category.id)],
|
||||
'taxes_id': False,
|
||||
})
|
||||
# Disable any other program
|
||||
self.env['loyalty.program'].search([]).write({'active': False})
|
||||
|
||||
gift_card_program = self.env['loyalty.program'].create({
|
||||
'name': 'Gift Cards',
|
||||
'program_type': 'gift_card',
|
||||
'applies_on': 'future',
|
||||
'trigger': 'auto',
|
||||
'rule_ids': [(0, 0, {
|
||||
'reward_point_amount': 1,
|
||||
'reward_point_mode': 'money',
|
||||
'reward_point_split': True,
|
||||
'product_ids': gift_card,
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount_mode': 'per_point',
|
||||
'discount': 1,
|
||||
'discount_applicability': 'order',
|
||||
'required_points': 1,
|
||||
'description': 'PAY WITH GIFT CARD',
|
||||
})],
|
||||
})
|
||||
# Another program for good measure
|
||||
self.env['loyalty.program'].create({
|
||||
'name': '10% Discount',
|
||||
'applies_on': 'current',
|
||||
'trigger': 'with_code',
|
||||
'program_type': 'promotion',
|
||||
'rule_ids': [(0, 0, {
|
||||
'mode': 'with_code',
|
||||
'code': '10PERCENT',
|
||||
})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount': 10,
|
||||
'discount_mode': 'percent',
|
||||
'discount_applicability': 'order',
|
||||
})],
|
||||
})
|
||||
# Create a gift card to be used
|
||||
self.env['loyalty.card'].create({
|
||||
'program_id': gift_card_program.id,
|
||||
'points': 50,
|
||||
'code': 'GIFT_CARD',
|
||||
})
|
||||
|
||||
self.env.ref("website_sale.reduction_code").write({"active": True})
|
||||
self.start_tour('/', 'shop_sale_gift_card', login='admin')
|
||||
|
||||
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')
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestWebsiteSaleCoupon(TransactionCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestWebsiteSaleCoupon, cls).setUpClass()
|
||||
program = cls.env['loyalty.program'].create({
|
||||
'name': '10% TEST Discount',
|
||||
'trigger': 'with_code',
|
||||
'applies_on': 'current',
|
||||
'rule_ids': [(0, 0, {})],
|
||||
'reward_ids': [(0, 0, {
|
||||
'reward_type': 'discount',
|
||||
'discount': 10,
|
||||
'discount_mode': 'percent',
|
||||
})],
|
||||
})
|
||||
|
||||
cls.env['loyalty.generate.wizard'].with_context(active_id=program.id).create({
|
||||
'coupon_qty': 1,
|
||||
'points_granted': 1
|
||||
}).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:
|
||||
raise ValidationError(status['error'])
|
||||
if not status and no_reward_fail:
|
||||
# Can happen if global discount got filtered out in `_get_claimable_rewards`
|
||||
raise ValidationError('No reward to claim with this coupon')
|
||||
coupons = self.env['loyalty.card']
|
||||
rewards = self.env['loyalty.reward']
|
||||
for coupon, coupon_rewards in status.items():
|
||||
coupons |= coupon
|
||||
rewards |= coupon_rewards
|
||||
if len(coupons) == 1 and len(rewards) == 1:
|
||||
status = order._apply_program_reward(rewards, coupons)
|
||||
if 'error' in status:
|
||||
raise ValidationError(status['error'])
|
||||
|
||||
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,
|
||||
})
|
||||
|
||||
# 2. Apply the coupon
|
||||
self._apply_promo_code(order, self.coupon.code)
|
||||
|
||||
self.assertEqual(len(order.applied_coupon_ids), 1, "The coupon should've been applied on the order")
|
||||
self.assertEqual(self.coupon, order.applied_coupon_ids)
|
||||
|
||||
# 3. Test recent order -> Should not be removed
|
||||
order._gc_abandoned_coupons()
|
||||
|
||||
self.assertEqual(len(order.applied_coupon_ids), 1, "The coupon shouldn't have been removed from the order no more than 4 days")
|
||||
|
||||
# 4. Test order not older than ICP validity -> Should not be removed
|
||||
ICP = self.env['ir.config_parameter']
|
||||
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))
|
||||
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")
|
||||
|
||||
# 5. Test order with no ICP and older then 4 default days -> Should be removed
|
||||
icp_validity.unlink()
|
||||
order._gc_abandoned_coupons()
|
||||
|
||||
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,
|
||||
})
|
||||
|
||||
# 2. Apply the coupon
|
||||
self._apply_promo_code(order, self.coupon.code)
|
||||
|
||||
# 3. Remove the coupon
|
||||
coupon_line = order.website_order_line.filtered(
|
||||
lambda l: l.coupon_id and l.coupon_id.id == self.coupon.id
|
||||
)
|
||||
|
||||
order._cart_update(coupon_line.product_id.id, add_qty=None)
|
||||
|
||||
msg = "The coupon should've been removed from the order"
|
||||
self.assertEqual(len(order.applied_coupon_ids), 0, msg=msg)
|
||||
|
||||
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,
|
||||
ensuring that the system correctly handles multiple coupon lines created
|
||||
for each unique tax scenario.
|
||||
|
||||
Background:
|
||||
An order may include products with different tax implications,
|
||||
such as non-taxed products, products with a single tax rate,
|
||||
and products with multiple tax rates. When a coupon is applied,
|
||||
it creates separate coupon lines for each distinct tax situation
|
||||
(non-taxed, individual taxes, and combinations of taxes).
|
||||
This test verifies that the coupon deletion process accurately removes
|
||||
all associated coupon lines, maintaining the financial accuracy of the order.
|
||||
|
||||
Steps:
|
||||
1. Create an order with products subject to different tax scenarios:
|
||||
- Non-taxed product 'Product A'
|
||||
- Product 'Product B' with Tax A
|
||||
- Product 'Product C' with Tax B
|
||||
- Product 'Product D' subject to both Tax A and Tax B
|
||||
2. Apply a coupon, which generates four distinct coupon lines
|
||||
to reflect each tax scenario.
|
||||
3. Remove the coupon and verify that all coupon lines are removed and
|
||||
that no coupons remain applied.
|
||||
"""
|
||||
# Create 2 Taxes
|
||||
tax_a = self.env['account.tax'].create({
|
||||
'name': 'Tax A',
|
||||
'type_tax_use': 'sale',
|
||||
'amount_type': 'percent',
|
||||
'amount': 15,
|
||||
})
|
||||
tax_b = tax_a.copy({'name': 'Tax B'})
|
||||
|
||||
# Create 4 products subject to different tax
|
||||
products_data = [
|
||||
('Product A', []),
|
||||
('Product B', [tax_a.id]),
|
||||
('Product C', [tax_b.id]),
|
||||
('Product D', [tax_a.id, tax_b.id]),
|
||||
]
|
||||
|
||||
products = self.env['product.product'].create(
|
||||
[{
|
||||
'name': name,
|
||||
'list_price': 100,
|
||||
'sale_ok': True,
|
||||
'taxes_id': [Command.set(taxes_id)],
|
||||
} 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],
|
||||
})
|
||||
|
||||
msg = "There should only be 4 lines for the 4 products."
|
||||
self.assertEqual(len(order.order_line), 4, msg=msg)
|
||||
|
||||
# 2. Apply the coupon
|
||||
self._apply_promo_code(order, self.coupon.code)
|
||||
|
||||
msg = (
|
||||
"4 additional lines should have been added to the sale orders"
|
||||
"after application of the coupon for each separate tax situation."
|
||||
)
|
||||
self.assertEqual(len(order.order_line), 8, msg=msg)
|
||||
|
||||
# 3. Remove the coupon
|
||||
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,
|
||||
)
|
||||
|
||||
msg = "All coupon lines should have been removed from the order."
|
||||
self.assertEqual(len(order.applied_coupon_ids), 0, msg=msg)
|
||||
self.assertEqual(len(order.order_line), 4, msg=msg)
|
||||
|
||||
def test_confirm_points_as_public_user(self):
|
||||
test_product = self.env['product.product'].create({
|
||||
'name': "Test Product",
|
||||
'list_price': 100,
|
||||
'sale_ok': True,
|
||||
})
|
||||
test_partner = self.env['res.partner'].create({
|
||||
'name': 'Test Partner'
|
||||
})
|
||||
|
||||
loyalty_program = self.env['loyalty.program'].create({
|
||||
'name': "Loyalty Program",
|
||||
'program_type': 'loyalty',
|
||||
'trigger': 'auto',
|
||||
'applies_on': 'both',
|
||||
'rule_ids': [Command.create({
|
||||
'reward_point_mode': 'unit',
|
||||
'reward_point_amount': 1,
|
||||
'product_ids': [test_product.id],
|
||||
})],
|
||||
'reward_ids': [Command.create({
|
||||
'reward_type': 'discount',
|
||||
'discount': 1.5,
|
||||
'discount_mode': 'per_point',
|
||||
'discount_applicability': 'order',
|
||||
'required_points': 3,
|
||||
})],
|
||||
})
|
||||
|
||||
order = self.env['sale.order'].create({
|
||||
'partner_id': test_partner.id,
|
||||
'order_line': [Command.create({
|
||||
'product_id': test_product.id,
|
||||
'product_uom_qty': 1,
|
||||
})]
|
||||
})
|
||||
|
||||
loyalty_card = self.env['loyalty.card'].create({
|
||||
'program_id': loyalty_program.id,
|
||||
'partner_id': test_partner.id,
|
||||
'points': 0,
|
||||
})
|
||||
public_user = self.env.ref('base.public_user')
|
||||
order.action_quotation_send()
|
||||
order.with_context(access_token=order.access_token, user=public_user).action_confirm()
|
||||
self.assertEqual(loyalty_card.points, 1)
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="loyalty_card_view_tree_inherit_website_sale_loyalty" model="ir.ui.view">
|
||||
<field name="name">loyalty.card.view.tree.inherit.website.sale.loyalty</field>
|
||||
<field name="model">loyalty.card</field>
|
||||
<field name="inherit_id" ref="loyalty.loyalty_card_view_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<button name="action_coupon_send" position="after">
|
||||
<button name="action_coupon_share" string="Share" type="object" icon="fa-share-alt"/>
|
||||
</button>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<menuitem id="menu_loyalty" name="Loyalty"
|
||||
parent="website_sale.menu_ecommerce" sequence="4"
|
||||
groups="sales_team.group_sale_manager"/>
|
||||
|
||||
<menuitem
|
||||
id="menu_discount_loyalty_type_config"
|
||||
action="loyalty.loyalty_program_discount_loyalty_action"
|
||||
name="Discount & Loyalty"
|
||||
parent="website_sale_loyalty.menu_loyalty"
|
||||
groups="sales_team.group_sale_manager"
|
||||
sequence="50"
|
||||
/>
|
||||
|
||||
<menuitem
|
||||
id="menu_gift_ewallet_type_config"
|
||||
action="loyalty.loyalty_program_gift_ewallet_action"
|
||||
name="Gift cards & eWallet"
|
||||
parent="website_sale_loyalty.menu_loyalty"
|
||||
groups="sales_team.group_sale_manager"
|
||||
sequence="51"
|
||||
/>
|
||||
|
||||
<record id="loyalty_program_view_form_inherit_website_sale_loyalty" model="ir.ui.view">
|
||||
<field name="name">loyalty.program.view.form.inherit.website.sale.loyalty</field>
|
||||
<field name="model">loyalty.program</field>
|
||||
<field name="inherit_id" ref="sale_loyalty.loyalty_program_view_form_inherit_sale_loyalty"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//label[@for='available_on']" position="attributes">
|
||||
<attribute name="invisible">0</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//div[@id='o_loyalty_program_availabilities']" position="attributes">
|
||||
<attribute name="invisible">0</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//div[@id='o_loyalty_program_availabilities']" position="inside">
|
||||
<span class="d-inline-block">
|
||||
<field name="ecommerce_ok" class="w-auto me-0"/>
|
||||
<label for="ecommerce_ok" string="Website" class="me-3"/>
|
||||
</span>
|
||||
</xpath>
|
||||
<xpath expr="//div[@id='o_loyalty_program_availabilities']" position="after">
|
||||
<field name="website_id" attrs="{'invisible': [('ecommerce_ok', '=', False)]}" options="{'no_create': True}" groups="website.group_multi_website" placeholder="All websites"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="loyalty_program_view_tree_inherit_website_sale_loyalty" model="ir.ui.view">
|
||||
<field name="name">loyalty.program.view.tree.inherit.website.sale.loyalty</field>
|
||||
<field name="model">loyalty.program</field>
|
||||
<field name="inherit_id" ref="loyalty.loyalty_program_view_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="coupon_count_display" position="after">
|
||||
<field name="website_id" options="{'no_create': True}" groups="website.group_multi_website"/>
|
||||
</field>
|
||||
<field name="company_id" position="after">
|
||||
<button name="action_program_share" string="Share" type="object" icon="fa-share-alt" attrs="{ 'invisible' : [('program_type', '!=', 'promo_code')]}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form_inherit_website_sale_loyalty" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.website.sale.loyalty</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="website.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='website_sale_loyalty']" position="after">
|
||||
<div class="content-group">
|
||||
<div class="mt8" attrs="{'invisible': [('module_loyalty', '=', False)]}">
|
||||
<button name="%(loyalty.loyalty_program_discount_loyalty_action)d" icon="fa-arrow-right" type="action" string="Loyalty Programs" class="btn-link"/>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="snippet_options" inherit_id="website.snippet_options" name="Coupon Snippet Options">
|
||||
<xpath expr="." position="inside">
|
||||
<div data-selector="main:has(.oe_website_sale .wizard)" data-page-options="true" groups="website.group_website_designer" data-no-check="true">
|
||||
<we-checkbox string="Show Discount in Subtotal"
|
||||
data-customize-website-views="website_sale_loyalty.cart_discount"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,174 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="sale_coupon_result" inherit_id="website_sale.coupon_form">
|
||||
<xpath expr="//form[@name='coupon_code']//input[@name='promo']" position="attributes">
|
||||
<attribute name="placeholder">Gift card or discount code...</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//t[@name='code_not_available']" position="replace"/>
|
||||
</template>
|
||||
|
||||
<template id="modify_code_form" inherit_id="website_sale.total" name="Loyalty, coupon, gift card">
|
||||
<xpath expr="//div[@id='cart_total']//table/tr[last()]" position="after">
|
||||
<tr t-if="not hide_promotions" class="oe_website_sale_gift_card">
|
||||
<td colspan="3" class="text-center text-xl-end border-0">
|
||||
<span class=''>
|
||||
<t t-if="request.params.get('code_not_available')">
|
||||
<div class="alert alert-danger text-start mt16" role="alert">
|
||||
Invalid or expired promo code.
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="promo_code_error">
|
||||
<div class="alert alert-danger text-start mt16" role="alert">
|
||||
<t t-esc="promo_code_error"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="website_sale_order and promo_code_success">
|
||||
<div class="alert alert-success text-start mt16" role="alert">
|
||||
You have successfully applied the following code: <strong t-esc="promo_code_success"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="website_sale_order">
|
||||
<t t-foreach="website_sale_order._get_claimable_rewards().items()" t-as="coupon_reward">
|
||||
<t t-foreach="coupon_reward[1]" t-as="reward">
|
||||
<form t-att-action="'/shop/claimreward%s' % (redirect and '?r=' + redirect or '')"
|
||||
method="post" name="claim_reward">
|
||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
|
||||
<input type="hidden" name="reward" t-att-value="reward.id"/>
|
||||
<div class="alert alert-success text-start mt16" role="alert">
|
||||
<div class="d-flex flex-row">
|
||||
<div class="flex-grow-1 text-break">
|
||||
<strong t-esc="reward.description"/>
|
||||
<div t-if="reward.reward_type == 'product'"
|
||||
class="mt-1 pe-3"
|
||||
>
|
||||
<select
|
||||
t-if="reward.multi_product"
|
||||
class="o_select w-100 form-select form-select-sm css_attribute_select"
|
||||
name="product_id"
|
||||
>
|
||||
<option
|
||||
t-foreach="reward.reward_product_ids"
|
||||
t-as="product"
|
||||
t-att-value="product.id"
|
||||
>
|
||||
<t t-out="product.display_name"/>
|
||||
</option>
|
||||
</select>
|
||||
<t t-else="">
|
||||
<t t-esc="reward.reward_product_ids.display_name"/>
|
||||
</t>
|
||||
</div>
|
||||
<div t-if="reward.program_id.portal_visible">
|
||||
<t t-set="coupon" t-value="coupon_reward[0]"/>
|
||||
<t t-if="not reward.program_id.is_nominative">
|
||||
<span t-out="coupon._format_points(website_sale_order._get_real_points_for_coupon(coupon))"/>
|
||||
</t>
|
||||
<t t-else="">
|
||||
<span>You have <t t-out="coupon._format_points(website_sale_order._get_real_points_for_coupon(coupon))"/></span>
|
||||
<span t-if="reward.program_id.program_type == 'ewallet'"> in your ewallet</span>
|
||||
<t t-if="reward.program_id.program_type != 'ewallet'">
|
||||
<br/>
|
||||
<span>Costs <t t-out="coupon._format_points(reward.required_points)"/></span>
|
||||
</t>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
<div class="justify-content-end">
|
||||
<a class="btn btn-primary a-submit" href="#" role="button">
|
||||
<t t-if="reward.program_id.program_type == 'ewallet'">Pay with eWallet</t>
|
||||
<t t-else="">Claim</t>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</t>
|
||||
</t>
|
||||
</t>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="website_sale_coupon_cart_hide_qty" inherit_id="website_sale.cart_lines">
|
||||
<xpath expr="//del" position="attributes">
|
||||
<attribute name="t-if">not line.is_reward_line</attribute>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="layout" inherit_id="website.layout">
|
||||
<body position="inside">
|
||||
<t t-set="coupon_error" t-value="request.params.get('coupon_error')"/>
|
||||
<t t-set="pending_coupon_code" t-value="request.session.get('pending_coupon_code')"/>
|
||||
<t t-if="coupon_error and pending_coupon_code">
|
||||
<div t-attf-class="d-none coupon-message coupon-{{ request.params.get('coupon_error_type', 'error') }}-message">
|
||||
<span class="coupon-message-title">Could not apply the promo code: <t t-out="pending_coupon_code"/></span>
|
||||
<span class="coupon-message-content" t-out="coupon_error"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-set="notify_coupon" t-value="request.params.get('notify_coupon')"/>
|
||||
<div t-if="notify_coupon" class="d-none coupon-message coupon-info-message">
|
||||
<span class="coupon-message-content">The following promo code was applied on your order: <t t-out="notify_coupon"/></span>
|
||||
</div>
|
||||
</body>
|
||||
</template>
|
||||
|
||||
<template id="cart_discount" name="Show Discount in Subtotal" active="False" inherit_id="website_sale.total">
|
||||
<xpath expr="//tr[@id='order_total_untaxed']" position="before">
|
||||
<tr t-if="website_sale_order and website_sale_order.reward_amount">
|
||||
<td class="text-end border-0 text-muted" title="Discounted amount">Discount:</td>
|
||||
<td class="text-xl-end border-0 text-muted">
|
||||
<span t-field="website_sale_order.reward_amount" style="white-space: nowrap;"
|
||||
class="monetary_field"
|
||||
t-options='{
|
||||
"widget": "monetary",
|
||||
"display_currency": website_sale_order.currency_id,
|
||||
}'/>
|
||||
</td>
|
||||
</tr>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="reduction_coupon_code" inherit_id="website_sale.reduction_code">
|
||||
<xpath expr="//t[@t-set='force_coupon']" position="replace">
|
||||
<t t-set='force_coupon' t-value="website_sale_order.pricelist_id.code or request.params.get('code_not_available') or website_sale_order.get_promo_code_error(delete=False)"/>
|
||||
</xpath>
|
||||
<xpath expr="//a" position="replace">
|
||||
<a href="#" class="show_coupon">Discount code or gift card</a>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="cart_summary" name="Payment" inherit_id="website_sale.cart_summary">
|
||||
<!-- `tax_excluded` line price -->
|
||||
<xpath expr="//table[@id='cart_products']/tbody/tr/td[hasclass('td-price')]/child::*" position="attributes">
|
||||
<attribute name="t-att-data-reward-type">line.reward_id.reward_type</attribute>
|
||||
</xpath>
|
||||
<!-- `tax_included` line price -->
|
||||
<xpath expr="//table[@id='cart_products']/tbody/tr/td[hasclass('td-price')]/*[2]" position="attributes">
|
||||
<attribute name="t-att-data-reward-type">line.reward_id.reward_type</attribute>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="cart_line_product_no_link" inherit_id="website_sale.cart_line_product_link">
|
||||
<xpath expr="//a" position="replace">
|
||||
<t t-if="line.is_reward_line">
|
||||
<strong t-field="line.name"/>
|
||||
<t t-call="sale_loyalty.used_gift_card"/>
|
||||
</t>
|
||||
<t t-else="">$0</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="cart_summary_inherit_website_gift_card_sale" inherit_id="website_sale.cart_summary">
|
||||
<xpath expr="//td[hasclass('td-product_name')]/div/strong" position="after">
|
||||
<t t-call="sale_loyalty.used_gift_card"/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="website_sale_purchased_gift_card" inherit_id="website_sale.confirmation" >
|
||||
<xpath expr="//div[@id='oe_structure_website_sale_confirmation_2']" position="after">
|
||||
<t t-call="sale_loyalty.sale_purchased_gift_card"/>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import sale_coupon_share
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from werkzeug.urls import url_encode
|
||||
|
||||
from odoo import fields, models, api, _
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
|
||||
|
||||
class SaleCouponShare(models.TransientModel):
|
||||
_name = 'coupon.share'
|
||||
_description = 'Create links that apply a coupon and redirect to a specific page'
|
||||
|
||||
def _get_default_website_id(self):
|
||||
program_website_id = self.env['loyalty.program'].browse(self.env.context.get('default_program_id')).website_id
|
||||
if program_website_id:
|
||||
return program_website_id
|
||||
else:
|
||||
Website = self.env['website']
|
||||
websites = Website.search([])
|
||||
return len(websites) == 1 and websites or Website
|
||||
|
||||
website_id = fields.Many2one('website', required=True, default=_get_default_website_id)
|
||||
coupon_id = fields.Many2one('loyalty.card', domain="[('program_id', '=', program_id)]")
|
||||
program_id = fields.Many2one('loyalty.program', required=True, domain=[
|
||||
'|', ('program_type', '=', 'coupons'), # All coupons programs
|
||||
'|', ('trigger', '=', 'with_code'), # All programs that require a code
|
||||
('rule_ids.code', '!=', False), # All programs that can not trigger without a code
|
||||
])
|
||||
program_website_id = fields.Many2one('website', string='Program Website', related='program_id.website_id')
|
||||
|
||||
promo_code = fields.Char(compute='_compute_promo_code')
|
||||
share_link = fields.Char(compute='_compute_share_link')
|
||||
redirect = fields.Char(required=True, default='/shop')
|
||||
|
||||
@api.constrains('coupon_id', 'program_id')
|
||||
def _check_program(self):
|
||||
if self.filtered(lambda record: not record.coupon_id and record.program_id.program_type == 'coupons'):
|
||||
raise ValidationError(_("A coupon is needed for coupon programs."))
|
||||
|
||||
@api.constrains('website_id', 'program_id')
|
||||
def _check_website(self):
|
||||
if self.filtered(lambda record: record.program_website_id and record.program_website_id != record.website_id):
|
||||
raise ValidationError(_("The shared website should correspond to the website of the program."))
|
||||
|
||||
@api.depends('coupon_id.code', 'program_id.rule_ids.code')
|
||||
def _compute_promo_code(self):
|
||||
for record in self:
|
||||
record.promo_code = record.coupon_id.code or record.program_id.rule_ids.filtered('code')[:1].code
|
||||
|
||||
@api.depends('website_id', 'redirect')
|
||||
@api.depends_context('use_short_link')
|
||||
def _compute_share_link(self):
|
||||
for record in self:
|
||||
target_url = '{base}/coupon/{code}?{query}'.format(
|
||||
base=record.website_id.get_base_url(),
|
||||
code=record.promo_code,
|
||||
query=url_encode({'r': record.redirect}),
|
||||
)
|
||||
|
||||
if record.env.context.get('use_short_link'):
|
||||
tracker = self.env['link.tracker'].search([('url', '=', target_url)], limit=1)
|
||||
if not tracker:
|
||||
tracker = self.env['link.tracker'].create({'url': target_url})
|
||||
record.share_link = tracker.short_url
|
||||
else:
|
||||
record.share_link = target_url
|
||||
|
||||
def action_generate_short_link(self):
|
||||
return {
|
||||
'name': _('Share'),
|
||||
'type': 'ir.actions.act_window',
|
||||
'view_mode': 'form',
|
||||
'res_model': 'coupon.share',
|
||||
'target': 'new',
|
||||
'res_id': self.id,
|
||||
'context': {
|
||||
'use_short_link': True,
|
||||
}
|
||||
}
|
||||
|
||||
@api.model
|
||||
def create_share_action(self, coupon=None, program=None):
|
||||
if bool(program) == bool(coupon):
|
||||
raise UserError(_("Provide either a coupon or a program."))
|
||||
|
||||
return {
|
||||
'name': _('Share') + f' {self.env["loyalty.program"]._program_items_name().get((program or coupon).program_type, "")}',
|
||||
'type': 'ir.actions.act_window',
|
||||
'view_mode': 'form',
|
||||
'res_model': 'coupon.share',
|
||||
'target': 'new',
|
||||
'context': {
|
||||
'form_view_initial_mode': 'edit',
|
||||
'default_program_id': program and program.id or coupon.program_id.id,
|
||||
'default_coupon_id': coupon and coupon.id or None,
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="coupon_share_view_form" model="ir.ui.view">
|
||||
<field name="name">coupon.share.form</field>
|
||||
<field name="model">coupon.share</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Share Loyalty Card" edit="1" create="0">
|
||||
<field name="website_id" invisible="1"/>
|
||||
<field name="program_website_id" invisible="1"/>
|
||||
<group>
|
||||
<div colspan="2">
|
||||
<p>
|
||||
You can share this promotion with your customers.
|
||||
It will be applied at checkout when the customer uses this link.
|
||||
</p>
|
||||
</div>
|
||||
<field name="share_link" widget="CopyClipboardURL" no_label="1"/>
|
||||
</group>
|
||||
<group attrs="{'invisible': [('id', '!=', False)]}">
|
||||
<group>
|
||||
<field name="website_id" groups="website.group_multi_website" widget="selection"
|
||||
attrs="{'invisible': [('program_website_id', '!=', False)]}"/>
|
||||
<field name="redirect"/>
|
||||
</group>
|
||||
</group>
|
||||
<footer>
|
||||
<button string="Done" class="btn-primary" special="cancel" data-hotkey="z"/>
|
||||
<button string="Generate Short Link" class="btn-secondary" type="object" name="action_generate_short_link"
|
||||
attrs="{'invisible': ['|', ('website_id', '=', False), ('id', '!=', False)]}" data-hotkey="g"/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue