Начальное наполнение
This commit is contained in:
parent
ab54bbfc99
commit
16de949862
26
README.md
26
README.md
@ -1,2 +1,26 @@
|
||||
# payment_demo
|
||||
# Модуль "Payment Demo"
|
||||
|
||||
Этот модуль позволяет проводить демонстрационные платежи (пожертвования) в проекте Armenian Cross.
|
||||
|
||||
|
||||
## Системные требования
|
||||
|
||||
- Odoo 17
|
||||
|
||||
## Модульные зависимости
|
||||
|
||||
В Odoo должны быть установлены следующие модули:
|
||||
|
||||
- payment -- ветка armenian-cross
|
||||
|
||||
|
||||
## Установка
|
||||
|
||||
1. Скачать модуль с помощью команды `git clone` в папку `addons`
|
||||
3. Перезапустить сервис odoo
|
||||
`systemctl restart odoo`
|
||||
4. Авторизоваться в odoo и включить debug режим модифицировав URL строку
|
||||
`http://<ip-addr_srv>:8069/web?debug=true`
|
||||
5. Перейти в раздел "Приложение" и активировать режим "Обновить список приложений" в верхнем меню страницы
|
||||
6. В списке приложений найти модуль `payment_demo` и нажать кнопку "Активировать"
|
||||
|
||||
|
14
__init__.py
Normal file
14
__init__.py
Normal file
@ -0,0 +1,14 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
||||
from odoo.addons.payment import setup_provider, reset_payment_provider
|
||||
|
||||
|
||||
def post_init_hook(env):
|
||||
setup_provider(env, 'demo')
|
||||
|
||||
|
||||
def uninstall_hook(env):
|
||||
reset_payment_provider(env, 'demo')
|
27
__manifest__.py
Normal file
27
__manifest__.py
Normal file
@ -0,0 +1,27 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Payment Provider: Demo',
|
||||
'version': '2.0',
|
||||
'category': 'Hidden',
|
||||
'sequence': 350,
|
||||
'summary': "A payment provider for running fake payment flows for demo purposes.",
|
||||
'description': " ", # Non-empty string to avoid loading the README file.
|
||||
'depends': ['payment'],
|
||||
'data': [
|
||||
'views/payment_demo_templates.xml',
|
||||
'views/payment_token_views.xml',
|
||||
'views/payment_transaction_views.xml',
|
||||
|
||||
'data/payment_method_data.xml',
|
||||
'data/payment_provider_data.xml', # Depends on `payment_method_demo`.
|
||||
],
|
||||
'post_init_hook': 'post_init_hook',
|
||||
'uninstall_hook': 'uninstall_hook',
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'payment_demo/static/src/js/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
6
const.py
Normal file
6
const.py
Normal file
@ -0,0 +1,6 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
# The codes of the payment methods to activate when Demo is activated.
|
||||
DEFAULT_PAYMENT_METHOD_CODES = [
|
||||
'demo',
|
||||
]
|
3
controllers/__init__.py
Normal file
3
controllers/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
17
controllers/main.py
Normal file
17
controllers/main.py
Normal file
@ -0,0 +1,17 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class PaymentDemoController(http.Controller):
|
||||
_simulation_url = '/payment/demo/simulate_payment'
|
||||
|
||||
@http.route(_simulation_url, type='json', auth='public')
|
||||
def demo_simulate_payment(self, **data):
|
||||
""" Simulate the response of a payment request.
|
||||
|
||||
:param dict data: The simulated notification data.
|
||||
:return: None
|
||||
"""
|
||||
request.env['payment.transaction'].sudo()._handle_notification_data('demo', data)
|
14
data/payment_method_data.xml
Normal file
14
data/payment_method_data.xml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="payment_method_demo" model="payment.method">
|
||||
<field name="name">Demo</field>
|
||||
<field name="code">demo</field>
|
||||
<field name="sequence">1</field>
|
||||
<field name="image" type="base64" file="payment_demo/static/img/demo.png"/>
|
||||
<field name="support_tokenization">True</field>
|
||||
<field name="support_express_checkout">False</field>
|
||||
<field name="support_refund">partial</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
28
data/payment_provider_data.xml
Normal file
28
data/payment_provider_data.xml
Normal file
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="payment_provider_demo" model="payment.provider">
|
||||
<field name="name">Demo</field>
|
||||
<field name="sequence">40</field>
|
||||
<field name="image_128" type="base64" file="payment_demo/static/description/icon.png"/>
|
||||
<field name="module_id" ref="base.module_payment_demo"/>
|
||||
</record>
|
||||
|
||||
|
||||
<record id="payment_provider_demo" model="payment.provider">
|
||||
<field name="code">demo</field>
|
||||
<field name="state">test</field>
|
||||
<field name="is_published">True</field>
|
||||
<field name="inline_form_view_id" ref="inline_form"/>
|
||||
<field name="token_inline_form_view_id" ref="token_inline_form"/>
|
||||
<field name="express_checkout_form_view_id" ref="express_checkout_form"/>
|
||||
<field name="allow_tokenization">True</field>
|
||||
<field name="allow_express_checkout">True</field>
|
||||
<field name="payment_method_ids"
|
||||
eval="[Command.set([
|
||||
ref('payment_demo.payment_method_demo'),
|
||||
])]"
|
||||
/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
290
i18n/ar.po
Normal file
290
i18n/ar.po
Normal file
@ -0,0 +1,290 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" تم بنجاح\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" قيد الانتظار\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" تم الإلغاء\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" خطأ\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>المدينة</b></small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>الدولة</b></small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>الاسم</b></small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>الشارع والرقم</b></small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>الرمز البريدي</b></small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>البريد الإلكتروني</small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>تفاصيل الدفع (البيانات التجريبية)</small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>حالة الدفع</small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>شارع 2</small> "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "تفويض "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "تم الإلغاء "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "تحصيل المبلغ يدوياً "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"قم بالتقاط المبلغ من أودو، عندما يتم احتساب التوصيل. \n"
|
||||
"استخدم ذلك إذا كنت ترغب في تغيير بطاقات عملائك، فقط عندما \n"
|
||||
"تكون متأكداً من قدرتك على شحن البضاعة إليهم. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "إغلاق"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "رمز "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "تأكيد"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "تم التأكيد "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "النسخة التجريبية"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "الدفع والخروج السريع التجريبي "
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "يجب ألا يتم تمكين مزودي الدفع التجريبيين أبداً. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "لم يتم العثور على معاملة تطابق المرجع %s. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "الدفع "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "الدفع بواسطة التجريبي "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "مزود الدفع "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "رمز الدفع "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "معاملة الدفع "
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "فشلت معالجة عملية الدفع "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "المدفوعات التي تتم من خلال هذه الطريقة ستكون <b>ناجحة</b>. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr "المدفوعات التي تتم من خلال هذه الطريقة سيتم <b>إلغاؤها</b> تلقائياً. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "المدفوعات التي تتم من خلال هذه الطريقة ستبقى <b>معلقة</b>. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"المدفوعات التي تتم من خلال هذه الطريقة ستحاكي <b>خطأ</b> في المعالجة. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "قيد الانتظار "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "التعيين كخطأ "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "الحالة التي تم إنشاؤها بالمحاكاة "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "وضع الاختبار "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "الحالة التي يجب تعيين المعاملات المنشأة من هذا الرمز إليها. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "الكود التقني لمزود الدفع هذا. "
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "المعاملة غير مرتبطة برمز. "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "غير منشور"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "لقد قمت بتحديد حالة الدفع التجريبية التالية: %s "
|
278
i18n/bg.po
Normal file
278
i18n/bg.po
Normal file
@ -0,0 +1,278 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# KeyVillage, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Георги Пехливанов <sonaris@gmail.com>, 2023
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Turhan Aydin <taydin@unionproject.eu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Turhan Aydin <taydin@unionproject.eu>, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отказ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Отменен"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Въведете количество ръчно"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Затвори"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Потвърждение"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Потвърдена"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Демо"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Грешка"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не е открита транзакция, съответстваща с референция %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Плати"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Доставчик на разплащания"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Платежен токен"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платежна транзакция"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Чакащ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Тестов режим"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Непубликуван"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
285
i18n/ca.po
Normal file
285
i18n/ca.po
Normal file
@ -0,0 +1,285 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Guspy12, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Albert Parera, 2023
|
||||
# jabiri7, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# marcescu, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# CristianCruzParra, 2023
|
||||
# Josep Anton Belchi, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Quim - eccit <quim@eccit.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Cancel·lat"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Captura la quantitat manualment"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Captura l'import des d'Odoo, quan s'hagi completat el lliurament.\n"
|
||||
"Useu això si voleu carregar les vostres targetes de clients només quan\n"
|
||||
"Està segur que pot enviar-los els productes."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Tancar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmat"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "De prova"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No s'ha trobat cap transacció que coincideixi amb la referència %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Paga"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveïdor de pagament"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pagament"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacció de pagament"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Pendent"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Mode de prova"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El codi tècnic d'aquest proveïdor de pagaments."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "La transacció no està enllaçada a un token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "No publicat"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
276
i18n/cs.po
Normal file
276
i18n/cs.po
Normal file
@ -0,0 +1,276 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2024
|
||||
# Katerina Horylova, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Katerina Horylova, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Stav platby</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Zrušeno"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Sejmout částku ručně"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Zachytit částku z Odoo, když je dodávka dokončena.\n"
|
||||
"Tuto funkci použijte, pokud chcete zákazníkům účtovat z karet pouze tehdy, když jste si jisti, že jim můžete zboží odeslat."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdit"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Potvrzený"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nebyla nalezena žádná transakce odpovídající odkazu %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Zaplatit"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Zaplatit zkušební platbou"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Poskytovatel platby"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Platební token"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platební transakce"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Zpracování platby se nezdařilo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Čeká"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testovací režim"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Technický kód tohoto poskytovatele plateb."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Transakce není spojena s tokenem."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nepublikovaný"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
273
i18n/da.po
Normal file
273
i18n/da.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Land</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Annulleret"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Indfang mængde manuelt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Bekræft"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Bekræftet"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Betal"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalingsudbyder"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalingstoken"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaktion"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Behandlingen af betaling mislykkedes"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Afventer"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Test tilstand"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Ikke udgivet"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
298
i18n/de.po
Normal file
298
i18n/de.po
Normal file
@ -0,0 +1,298 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Erfolgreich\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Ausstehend\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Storniert\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Fehler\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Stadt</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Land</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Name</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Straße und Nummer</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Postleitzahl</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>E-Mail</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Zahlungsdetails (Testdaten)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Zahlungsstatus</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Straße 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Autorisieren"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Abgebrochen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Betrag manuell erfassen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Erfassen Sie den Betrag von Odoo, wenn die Lieferung abgeschlossen ist.\n"
|
||||
"Verwenden Sie diese Funktion, wenn Sie die Karten Ihrer Kunden nur dann belasten möchten, wenn Sie sicher sind, dass Sie die Lieferung durchführen können."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Bestätigt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Demo-Express-Kassiervorgang"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Demo-Anbieter sollten nie aktiviert sein."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Keine Transaktion gefunden, die der Referenz %s entspricht."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Bezahlen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Bezahlen mit Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Zahlungsanbieter"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Zahlungstoken"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Zahlungstransaktion"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Zahlungsverarbeitung fehlgeschlagen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
"Zahlungen, die mit dieser Zahlungsmethode getätigt werden, sind "
|
||||
"<b>erfolgreich</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Zahlungen, die mit dieser Zahlungsmethode getätigt werden, werden "
|
||||
"automatisch <b>storniert</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Zahlungen, die mit dieser Zahlungsmethode getätigt werden, bleiben "
|
||||
"<b>ausstehend</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Zahlungen, die mit dieser Zahlungsmethode getätigt werden, simulieren einen "
|
||||
"Verarbeitungs<b>fehler</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Ausstehend"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Auf Fehler einstellen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Simulierter Status"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testmodus"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"Der Status, auf den Transaktionen, die mit diesem Token erstellt wurden, "
|
||||
"gesetzt werden sollen."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Der technische Code dieses Zahlungsanbieters."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Die Transaktion ist nicht mit einem Token verknüpft."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Unveröffentlicht"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Sie haben den folgenden Demo-Zahlungsstatus ausgewählt: %s"
|
295
i18n/es.po
Normal file
295
i18n/es.po
Normal file
@ -0,0 +1,295 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Lucia Pacheco, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Pago exitoso\">\n"
|
||||
" Exitoso\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Pago pendiente\">\n"
|
||||
" Pendiente\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Pago cancelado por el cliente\">\n"
|
||||
" Cancelado\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Error al procesar\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Ciudad</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>País</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nombre</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Calle y número</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Código postal</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Correo electrónico</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Detalles de pago (datos de prueba)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Estado de pago</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Calle 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Autorizar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Capturar el importe manualmente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capture el importe de Odoo cuando la entrega se haya completado.\n"
|
||||
"Utilícelo si desea hacer el cargo a la tarjeta de sus clientes solo cuando\n"
|
||||
"esté seguro de que puede enviarles los artículos."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demostración"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Pago exprés de demostración"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Los proveedores de demostración no deben estar activados."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
"No se ha encontrado ninguna transacción que coincida con la referencia %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Pagar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Pagar con demostración"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Error al procesar el pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Los pagos con este método de pago serán <b>exitosos</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Los pagos con este método de pago se <b>cancelarán</b> automáticamente."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Los pagos con este método de pago se mantendrán en estado <b>pendiente</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Los pagos con este método de pago mantendrán en estado de <b>error</b> de "
|
||||
"procesamiento."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Pendiente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Configurado como error"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Estado simulado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Modo de prueba"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "El estado que deben tener las transacciones de este token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El código técnico de este proveedor de pagos."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "La transacción no está vinculada a un token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "No publicado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Seleccionó el siguiente estado de pago de demostración: %s"
|
294
i18n/es_419.po
Normal file
294
i18n/es_419.po
Normal file
@ -0,0 +1,294 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Iran Villalobos López, 2023
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Pago exitoso\">\n"
|
||||
" Exitoso\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Pago pendiente\">\n"
|
||||
" Pendiente\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Pago cancelado por el cliente\">\n"
|
||||
" Cancelado\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Error al procesar\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Ciudad</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>País</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nombre</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Calle y número</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Código postal</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Correo electrónico</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Detalles de pago (datos de prueba)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Estado del pago</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Calle 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Autorizar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Capturar el importe de manera manual"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capturar el importe de Odoo cuando se complete la entrega.\n"
|
||||
"Utilícelo si desea hacer el cargo a la tarjeta de sus clientes solo cuando\n"
|
||||
"esté seguro de que puede enviarles los artículos."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demostración"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Finalización de la compra exprés de demostración"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Los proveedores de prueba no deben estar activados."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No se encontró ninguna transacción que coincida con la referencia %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Paga"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Pagar con demostración"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Error al procesar el pago"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Los pagos con este método de pago serán <b>exitosos</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Los pagos con este método de pago se <b>cancelarán</b> de manera automática."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Los pagos con este método de pago se mantendrán en estado <b>pendiente</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Los pagos con este método de pago mantendrán en estado de <b>error</b> de "
|
||||
"procesamiento."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Pendiente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Configurado como error"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Estado simulado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Modo de prueba"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "El estado que deben tener las transacciones de este token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El código técnico de este proveedor de pagos."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "La transacción no está vinculada a un token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Sin publicar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Seleccionó el siguiente estado de demostración de pago: %s"
|
283
i18n/et.po
Normal file
283
i18n/et.po
Normal file
@ -0,0 +1,283 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Marek Pontus, 2023
|
||||
# Martin Aavastik <martin@avalah.ee>, 2023
|
||||
# Katrin Kampura, 2023
|
||||
# Maidu Targama <m.targama@gmail.com>, 2023
|
||||
# Egon Raamat <egon@avalah.ee>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Patrick-Jordan Kiudorv, 2023
|
||||
# Anna, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anna, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Linn</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Riik</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nimi</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Tänav ja number</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Postiindeks</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>E-posti aadress</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Makse staatus</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Tänav 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Tühista"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Tühistatud"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Leia kogusummad käsitsi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Sulge"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kood"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Kinnitage"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Kinnitatud"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Esitlus"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Viga"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Maksa"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Makseteenuse pakkuja"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Sümboolne makse"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksetehing"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Makse töötlemine ebaõnnestus"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Töökäsu ootel"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testrežiim "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Antud makseteenuse pakkuja tehniline kood."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Avaldamata"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
275
i18n/fa.po
Normal file
275
i18n/fa.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# odooers ir, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "لغو شده"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "بستن"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "کد"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "تایید کردن"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "تایید شده"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "آزمایشی"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "خطا"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "پرداخت"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "سرویس دهنده پرداخت"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "توکن پرداخت"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "تراکنش پرداخت"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "معلق"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "حالت آزمایشی"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "منتشر نشده"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
296
i18n/fi.po
Normal file
296
i18n/fi.po
Normal file
@ -0,0 +1,296 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Onnistunut maksu\">\n"
|
||||
" Onnistunut\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Maksun käsittely\">\n"
|
||||
" Vireillä\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Asiakas on keskeyttänyt maksun\">\n"
|
||||
" Peruutettu\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Käsittelyvirhe\">\n"
|
||||
" Virhe\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Kaupunki</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Maa</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nimi</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Katu ja numero</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Postinumero</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Sähköposti</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Maksutiedot (testitiedot)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Maksun tila</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Katu 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Valtuuta"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Peruttu"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Kaappaa määrä manuaalisesti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Tallenna summa Odoosta, kun toimitus on valmis.\n"
|
||||
"Käytä tätä, jos haluat veloittaa asiakkaasi kortit vain silloin, kun\n"
|
||||
"olet varma, että voit toimittaa tavarat heille."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Vahvistettu"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Demo Express Checkout"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Demo-tarjoajia ei pitäisi koskaan ottaa käyttöön."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Viitettä %s vastaavaa tapahtumaa ei löytynyt."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Maksa"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Maksa Demolla"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksupalveluntarjoaja"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Maksutunniste"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksutapahtuma"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Maksun käsittely epäonnistui"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Tällä maksutavalla suoritetut maksut <b>onnistuvat</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Tällä maksutavalla suoritetut maksut <b>peruutetaan</b> automaattisesti."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "Tällä maksutavalla suoritetut maksut pysyvät <b>vireillä</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Tällä maksutavalla suoritetut maksut simuloivat <b>käsittelyvirhettä</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Odottaa"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Asetetaan virheeseen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Simuloitu tila"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testitila"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "Tila, johon tästä tunnuksesta luodut tapahtumat tulisi asettaa."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Tämän maksupalveluntarjoajan tekninen koodi."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Transaktio ei ole sidottu valtuutuskoodiin."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Julkaisematon"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Olet valinnut seuraavan demomaksutilanteen: %s"
|
298
i18n/fr.po
Normal file
298
i18n/fr.po
Normal file
@ -0,0 +1,298 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Paiement réussi\">\n"
|
||||
" Réussi\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Paiement en cours\">\n"
|
||||
" En attente\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Paiement annulé par le client\">\n"
|
||||
" Annulé\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Erreur de traitement\">\n"
|
||||
" Erreur\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Ville</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Pays</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nom</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Rue et numéro</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Code postal</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Email</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Données de paiement (données test)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Statut du paiement</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Rue 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Autoriser"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Annulé"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Capturer le montant manuellement"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capturez le montant depuis Odoo quand la livraison est effectuée.\n"
|
||||
"Utilisez cette option si vous voulez uniquement débiter les cartes de vos clients lorsque\n"
|
||||
"vous êtes sûr de pouvoir leur livrer la marchandise."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmé"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Démo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Démo paiement rapide"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Les fournisseurs démo ne devraient jamais être activés."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Aucune transaction ne correspond à la référence %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Payer"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Payer avec Démo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fournisseur de paiement"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Jeton de paiement"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaction de paiement"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Échec du traitement du paiement"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
"Les paiements effectués avec ce mode de paiement seront <b>réussis</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Les paiements effectués avec ce mode de paiement seront automatiquement "
|
||||
"<b>annulés</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Les paiements effectués avec ce mode de paiement resteront <b>en "
|
||||
"attente</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Les paiements effectués avec ce mode de paiement simuleront une "
|
||||
"<b>erreur</b> de traitement."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "En attente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Définir sur Erreur"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Statut simulé"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Mode test"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"Le statut dans lequel les transactions créées à partir de ce jeton doivent "
|
||||
"être mises."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Le code technique de ce fournisseur de paiement."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "La transaction n'est pas liée à un jeton."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Non publié"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Vous avez sélectionné le statut de paiement démo suivant : %s"
|
275
i18n/he.po
Normal file
275
i18n/he.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# Ofir Blum <ofir.blum@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "בוטל"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "לכוד סכום ידנית"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "סגור"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "קוד"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "אשר"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "מאושר"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "הדגמה"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "שגיאה"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "לא נמצאה עסקה המתאימה למספר האסמכתא %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "שלם"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "אסימון תשלום"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "עסקת תשלום"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "ממתין "
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "מצב בדיקה"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "לא פורסם"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
276
i18n/hu.po
Normal file
276
i18n/hu.po
Normal file
@ -0,0 +1,276 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# Gergő Kertész <gergo.kertesz@maxflow.hu>, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# krnkris, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Töröl"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Visszavonva"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Megerősítés"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Megerősített"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Minta"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Fizetés"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fizetési szolgáltató"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Fizetési tranzakció"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Függő"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Teszt mód"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nem közzétett"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
267
i18n/hy.po
Normal file
267
i18n/hy.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
295
i18n/id.po
Normal file
295
i18n/id.po
Normal file
@ -0,0 +1,295 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Abe Manyo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Berhasil\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Dibatalkan\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Kota</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Negara</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nama</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Jalan dan Nomor</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Kode Pos</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Email</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Detail Pembayaran (data tes)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Status Pembayaran</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Jalan 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Otorisasi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Dibatalkan"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Capture Jumlah secara Manual"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capture jumlah dari Odoo, saat pengiriman selesai.\n"
|
||||
"Gunakan ini bila Anda hanya ingin menagih kartu pelanggan Anda saat\n"
|
||||
"Anda yakin Anda dapat mengirim barang ke mereka."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Konfirmasi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Dikonfirmasi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Demo Checkout Express"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Demo penyedia seharusnya tidak pernah diaktifkan."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Error!"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Tidak ada transaksi dengan referensi %s yang cocok."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Bayar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Bayar dengan Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Penyedia Pembayaran"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token Pembayaran"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaksi Tagihan"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Pemrosesan pembayaran gagal"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Pembayaran dibuat dengan metode pembayaran ini akan <b>berhasil</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Pembayaran dibuat dengan metode pembayaran ini akan secara otomatis "
|
||||
"<b>dibatalkan</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Pembayaran dibuat dengan metode pembayaran ini akan tetap <b>pending</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Pembayaran dibuat dengan metode pembayaran ini akan mensimulasikan "
|
||||
"pemrosesan dengan <b>error</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Ditunda"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Tetapkan sebagai Error"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Status yang Disimulasikan"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Mode Testing"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"Status yang seharusnya diterapkan ke transaksi yang dibuat dari token ini."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kode teknis penyedia pembayaran ini."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Transaksi ini tidak terhubung ke token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Belum dipublikasikan"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Anda memilih status pembayaran demo berikut: %s"
|
271
i18n/is.po
Normal file
271
i18n/is.po
Normal file
@ -0,0 +1,271 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# jonasyngvi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: jonasyngvi, 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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Eyða"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
296
i18n/it.po
Normal file
296
i18n/it.po
Normal file
@ -0,0 +1,296 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Marianna Ciofani, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Andato a buon fine\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" In sospeso\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Annullato\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Errore\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Città</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Nazione</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nome</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Indirizzo e numero</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Codice postale</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>E-mail</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Dettagli pagamento (dati test)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Stato pagamento</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Indirizzo 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Autorizza"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Annullata"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Registra importo manualmente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Cattura l'importo da Odoo, quando la consegna è completata.\n"
|
||||
"Usa questo se vuoi addebitare le carte dei tuoi clienti solo quando\n"
|
||||
"sei sicuro di poter spedire la merce a loro."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confermato"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Pagamento express demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "I fornitori demo non devono essere mai abilitati."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nessuna transazione trovata corrispondente al riferimento %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Paga"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Paga con demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fornitore di pagamenti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token di pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transazione di pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Elaborazione del pagamento non riuscita"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
"I pagamenti effettuati con questo metodo sono <b>andati a buon fine</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"I pagamenti effettuati con questo metodo di pagamento verranno "
|
||||
"automaticamente <b>annullati</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"I pagamenti effettuati con questo metodo di pagamento risulteranno <b>in "
|
||||
"sospeso</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"I pagamenti effettuati con questo metodo di pagamento simuleranno un "
|
||||
"<b>errore</b> di elaborazione."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "In sospeso"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Imposta su Errore"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Stato simulato"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Modalità test"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "Lo stato da impostare per le transazioni create da questo token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Codice tecnico del fornitore di pagamenti."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "La transazione non è legata a un token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Non pubblicato"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Hai selezionato il seguente stato di pagamento demo: %s"
|
288
i18n/ja.po
Normal file
288
i18n/ja.po
Normal file
@ -0,0 +1,288 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Junko Augias, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Junko Augias, 2024\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" 成功\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" 保留\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" 取消済\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" エラー\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>都市</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>国</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>名前</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>通り名・番地</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>郵便番号</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Eメール</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>支払詳細(テストデータ)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>支払ステータス</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>通り名2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "承認"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "取消済"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "手動で金額をキャプチャ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"配達完了時にOdooから金額をキャプチャします。\n"
|
||||
"商品の発送ができると確信している時のみ、顧客カードに請求したい場合に使用します。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "閉じる"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "確認"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "確認済"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "デモ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "デモエクスプレス支払"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "デモプロバイダーは決して有効にしてはいけません。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "エラー"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "参照に一致する取引が見つかりません%s。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "お支払い"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "デモで支払う"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "決済プロバイダー"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "支払トークン"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "決済トランザクション"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "支払処理に失敗しました"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "この支払方法での支払は<b>成功</b>します。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr "この支払方法での支払は自動的に<b>取消</b>されます。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "この支払方法での支払は<b>保留</b>のままになります。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr "この支払い方法での支払いは、処理<b>エラー</b>をシミュレートします。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "保留"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "エラーに設定"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "シュミレートステータス"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "テストモード"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "このトークンから作成された取引のステータスを設定して下さい。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "この決済プロバイダーのテクニカルコード。"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "取引はトークンにリンクしていません。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "未公開"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "以下のデモ支払ステータスを選択しました: %s"
|
290
i18n/ko.po
Normal file
290
i18n/ko.po
Normal file
@ -0,0 +1,290 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Daye Jeong, 2023
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" 결제 성공\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" 대기 중\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" 취소됨\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" 오류\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>시/도</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>국가</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>이름</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>도로명 및 번지 수</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>우편번호</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>이메일</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>결제 세부 정보 (테스트 데이터)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>결제 상태</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>도로명 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "승인"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "취소됨"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "수동으로 금액 포착"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"배송이 완료되면 Odoo에서 금액을 매입 처리합니다.\n"
|
||||
"이 기능은 고객 신용카드로 결제를 청구할 때 사용하며,\n"
|
||||
"배송 여부가 확실한 경우에만 진행하시기 바랍니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "코드"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "승인"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "확인됨"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "데모"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "데모용 간편 결제"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "데모 공급업체는 활성화해서는 안됩니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "오류"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "%s 참조와 일치하는 거래 항목이 없습니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "지불"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "데모용 결제"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "결제대행업체"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "결제 토큰"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "지불 거래"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "결제 프로세스 실패"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "이 결제 수단으로 결제한 내역은 <b>성공</b>적으로 처리됩니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr "이 결제 수단으로 결제한 내역은 자동으로 <b>취소</b> 처리 됩니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "이 결제 수단으로 결제한 내역은 <b>보류</b> 상태로 유지됩니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr "이 결제 수단으로 결제한 내역에 대해 <b>오류</b>가 시뮬레이션됩니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "대기 중"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "오류로 설정"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "시뮬레이션 상태"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "테스트 모드"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "이 토큰으로 생성된 거래를 설정해야 하는 상태입니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "이 결제대행업체의 기술 코드입니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "거래가 토큰에 연결되어 있지 않습니다."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "게시 안 함"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "다음 데모 결제 상태를 선택했습니다: %s"
|
275
i18n/lt.po
Normal file
275
i18n/lt.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Arminas Grigonis <arminas@versada.lt>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Atšaukta"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Fiksuoti kiekį rankiniu būdu"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Uždaryti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kodas"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Patvirtinti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Patvirtinti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Klaida"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Apmokėti"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Mokėjimo raktas"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Mokėjimo operacija"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Laukia"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testinis režimas"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nepaskelbtas"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
275
i18n/lv.po
Normal file
275
i18n/lv.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# JanisJanis <jbojars@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Atcelts"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Aizvērt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kods"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Apstiprināt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Apstiprināts"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Kļūda"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Maksāt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksājumu sniedzējs"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksājuma darījums"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Gaida izpildi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nepublicēts"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
273
i18n/nb.po
Normal file
273
i18n/nb.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2024
|
||||
# Marius Stedjan <marius@stedjan.com>, 2024
|
||||
# Jorunn D. Newth, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jorunn D. Newth, 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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Avbrutt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Belast beløp manuelt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Bekreft"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Bekreftet"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Feil"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Betal"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalingstoken"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaksjon"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Venter"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testmodus"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Upublisert"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
294
i18n/nl.po
Normal file
294
i18n/nl.po
Normal file
@ -0,0 +1,294 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Succesvol\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" In behandeling\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Geannuleerd\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Fout\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Stad</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Land</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Naam</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Straat en nummer</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Postcode</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>E-mail</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Betaalgegevens (testgegevens)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Status betaling</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Straat 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Goedkeuren"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Geannuleerd"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Bepaal bedrag handmatig"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Leg het bedrag vast van Odoo, wanneer de levering is voltooid.\n"
|
||||
"Gebruik dit als je je klantenkaarten alleen wilt opladen wanneer\n"
|
||||
"je zeker weet dat je de goederen naar hen kunt verzenden."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestigen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Bevestigd"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Snel afrekenen demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Demoproviders moet nooit ingeschakeld zijn."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Geen transactie gevonden die overeenkomt met referentie %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Betalen"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Betaling met Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betaalprovider"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalingstoken"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransactie"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Betalingsverwerking mislukt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Betalingen met deze betaalmethode zullen <b>succesvol</b> zijn."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Betalingen met deze betaalmethode worden automatisch <b>geannuleerd</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "Betalingen met deze betaalmethode blijven <b>in behandeling</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Betalingen met deze betaalmethode zullen een verwerkings<b>fout</b> "
|
||||
"simuleren."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "In behandeling"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Zet op Fout"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Gesimuleerde status"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testmodus"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"De status waarin de transacties die met dit token zijn aangemaakt moeten "
|
||||
"worden gezet."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "De technische code van deze betaalprovider."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "De transactie is niet gekoppeld aan een token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Niet gepubliceerd"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Je hebt de volgende demobetalingsstatus geselecteerd: %s"
|
267
i18n/payment_demo.pot
Normal file
267
i18n/payment_demo.pot
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
275
i18n/pl.po
Normal file
275
i18n/pl.po
Normal file
@ -0,0 +1,275 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Anita Kosobucka, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anita Kosobucka, 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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Anulowano"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Ręczne przechwytywanie kwoty"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Przechwytuje kwotę z Odoo po zakończeniu dostawy.\n"
|
||||
"Użyj tej opcji, jeśli chcesz obciążać karty klientów tylko wtedy, gdy\n"
|
||||
"jesteś pewien, że możesz wysłać do nich towary."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Potwierdź"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Potwierdzone"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Błąd"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nie znaleziono transakcji pasującej do referencji %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Zapłać"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Dostawca Płatności"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token płatności"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcja płatności"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Przetwarzanie płatności nie powiodło się"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Oczekujące"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Tryb testowy"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kod techniczny tego dostawcy usług płatniczych."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Transakcja nie jest powiązana z tokenem."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nieopublikowane"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
272
i18n/pt.po
Normal file
272
i18n/pt.po
Normal file
@ -0,0 +1,272 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demonstraçãol"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Prestador de Pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Código de Pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação de Pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Pendente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Modo de Teste"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Não Publicada"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
294
i18n/pt_BR.po
Normal file
294
i18n/pt_BR.po
Normal file
@ -0,0 +1,294 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Sucesso\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pendente\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Cancelado\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Erro\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Cidade</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>País</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Nome</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Endereço</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>CEP</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>E-mail</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Informações de pagamento (dados de teste)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Status do pagamento</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Complemento</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Autorizar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Capturar valor manualmente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capture o valor pelo Odoo quando a entrega for concluída.\n"
|
||||
"Use isso se você quiser cobrar os cartões dos clientes somente quando\n"
|
||||
"tiver certeza de que pode enviar as mercadorias para eles."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Encerrar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demonstração"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Checkout expresso (demo)"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
"Provedores de pagamento de demonstração nunca devem estar habilitados."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nenhuma transação encontrada com a referência %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Pagar"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Pagar com demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provedor de serviços de pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação de pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Falha no processamento do pagamento"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Pagamentos feitos com este método terão <b>sucesso</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Pagamentos feitos com este método serão <b>cancelados</b> automaticamente."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "Pagamentos feitos com este método permanecerão <b>pendentes</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Pagamentos feitos com esse método simularão um <b>erro</b> de processamento."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Pendente"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Definir como erro"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Estado simulado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Modo de teste"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"O estado em que devem ser definidas as transações criadas a partir deste "
|
||||
"token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "O código técnico deste provedor de pagamento."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "A transação não está vinculada a um token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Não publicado"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Você selecionou o seguinte status de pagamento de demonstração: %s"
|
277
i18n/ro.po
Normal file
277
i18n/ro.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Cozmin Candea <office@terrabit.ro>, 2024
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2024
|
||||
# Martin Trigaux, 2024
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anulează"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Anulat(ă)"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Captați Valoarea Manual"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capturați suma din Odoo, atunci când livrarea este finalizată.\n"
|
||||
"Folosiți această opțiune dacă doriți să vă debitați cardurile clienților\n"
|
||||
"doar atunci când sunteți sigur că puteți livra bunurile lor."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Închide"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Cod"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmă"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmat"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Eroare"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nu s-a găsit nicio tranzacție care să se potrivească cu referința %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Plată"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Furnizor de plată"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de plată"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Tranzacție plată"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "În așteptare"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Mod testare"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Tranzacția nu este legată de un token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nepublicat"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
301
i18n/ru.po
Normal file
301
i18n/ru.po
Normal file
@ -0,0 +1,301 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Dinar <gabbasov@it-projects.info>, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Успешный\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Ожидается\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Отменено\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Ошибка\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Город</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Страна</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Имя</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Улица и номер</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Почтовый индекс</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Электронная почта</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Платежные реквизиты (тестовые данные)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Статус платежа</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Улица 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Авторизация"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отменить"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Отменено"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Захватить сумму вручную"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Получите сумму из Odoo, когда доставка будет завершена.\n"
|
||||
"Используйте этот способ, если хотите снимать деньги с карт клиентов только тогда\n"
|
||||
"вы уверены, что можете отправить им товар."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Подтвердить"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Подтверждено"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Демо"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Демонстрационная экспресс-касса"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Демонстрационные провайдеры никогда не должны быть включены."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Ошибка"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Оплатить"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Оплата с помощью демо-версии"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Поставщик платежей"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Платежный токен"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "платеж"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Обработка платежа не удалась"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
"Платежи, произведенные с помощью этого способа оплаты, будут "
|
||||
"<b>успешными</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Платежи, произведенные с помощью этого способа оплаты, будут автоматически "
|
||||
"<b>отменены</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Платежи, произведенные с помощью этого способа оплаты, останутся "
|
||||
"<b>незавершенными</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Платежи, произведенные с помощью этого метода оплаты, будут имитировать "
|
||||
"<b>ошибку</b> обработки."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "В ожидании"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Установить на ошибку"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Моделируемое состояние"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Тестовый режим"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"Состояние, в котором должны быть установлены транзакции, созданные с помощью"
|
||||
" этого токена."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технический код данного провайдера платежей."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Транзакция не привязана к токену."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Неопубликованный"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Вы выбрали следующий статус демо-платежа: %s"
|
271
i18n/sk.po
Normal file
271
i18n/sk.po
Normal file
@ -0,0 +1,271 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušené"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Zrušené"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Zachytiť sumu ručne"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Zatvoriť"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdiť"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Potvrdené"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Platba"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Platobný token"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platobná transakcia"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Nevykonané"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testovací režim"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Nepublikované"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
278
i18n/sl.po
Normal file
278
i18n/sl.po
Normal file
@ -0,0 +1,278 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Vida Potočnik <vida.potocnik@mentis.si>, 2023
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Katja Deržič, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Katja Deržič, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Prekliči"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Preklicano"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Ročno zajemanje zneska"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Zaključi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Oznaka"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Potrdi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Potrjeno"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Napaka"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Plačaj"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ponudnik plačil"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Plačilni žeton"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Plačilna transakcija"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Nerešeno"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testni način"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Neobjavljeno"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
277
i18n/sr.po
Normal file
277
i18n/sr.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Otkazano"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Capture Amount Manually"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Potvrđeno"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No transaction found matching reference %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Plati"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provajder plaćanja"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Payment Token"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "U toku"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Test Mode"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "The technical code of this payment provider."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "The transaction is not linked to a token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Neobjavljeno"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
305
i18n/sv.po
Normal file
305
i18n/sv.po
Normal file
@ -0,0 +1,305 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Bengt Evertsson <zyberfart@gmail.com>, 2023
|
||||
# Haojun Zou <apollo_zhj@msn.com>, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Lasse L, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Framgångsrik betalning\">\n"
|
||||
" Framgångsrik\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Betalningsbehandling\">\n"
|
||||
" Avvaktande\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Betalning avbruten av kund\">\n"
|
||||
" Avbruten\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Behandlingsfel\">\n"
|
||||
" Fel\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Stad</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Land</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Namn</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Gata och nummer</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Postnummer</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>E-post</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Betalningsuppgifter (testdata)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Betalningsstatus</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Street 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Auktorisera"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Avbruten"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Fånga upp belopp manuellt"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Fånga upp beloppet från Odoo när leveransen är klar.\n"
|
||||
"Använd detta om du vill debitera dina kunders kort först när du är\n"
|
||||
"du är säker på att du kan skicka varorna till dem."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Bekräfta"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Bekräftad"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Demo Express Checkout"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Demoleverantörer ska aldrig aktiveras."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Fel"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Ingen transaktion hittades som matchar referensen %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Betala"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Betala med demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalningsleverantör"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalnings-token"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalningstransaktion"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Betalningshanteringen misslyckades"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
"Betalningar som görs med denna betalningsmetod kommer att vara "
|
||||
"<b>framgångsrika</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Betalningar som görs med denna betalningsmetod kommer automatiskt att "
|
||||
"<b>annulleras</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Betalningar som görs med denna betalningsmetod kommer att förbli "
|
||||
"<b>avvaktande</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Betalningar som görs med denna betalningsmetod kommer att simulera ett "
|
||||
"<b>fel</b> i behandlingen."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Avvaktande"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Ställ in på fel"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Simulerat tillstånd"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Testläge"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"Tillståndet i vilket transaktioner skapade från denna poletten ska ställas "
|
||||
"in."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Den tekniska koden för denna betalningsleverantör."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Transaktionen är inte kopplad till en token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Opublicerad"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Du valde följande betalningsstatus för demo: %s"
|
289
i18n/th.po
Normal file
289
i18n/th.po
Normal file
@ -0,0 +1,289 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" สำเร็จ\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" กำลังดำเนินการ\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" ยกเลิก\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" ข้อผิดพลาด\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>เมือง</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>ประเทศ</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>ชื่อ</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>ถนนและหมายเลข</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>รหัสไปรษณีย์</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>อีเมล</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>รายละเอียดการชำระเงิน (ข้อมูลทดสอบ)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>สถานะการชำระเงิน</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>ถนน 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "อนุญาต"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "ถูกยกเลิก"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "การตัดยอดเงินด้วยตนเอง"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"เก็บเงินจาก Odoo เมื่อการส่งมอบเสร็จสิ้น\n"
|
||||
"ใช้สิ่งนี้หากคุณต้องการเรียกเก็บเงินจากบัตรของลูกค้าของคุณเฉพาะเมื่อ\n"
|
||||
"คุณแน่ใจว่าคุณสามารถจัดส่งสินค้าให้พวกเขาได้เท่านั้น"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "ปิด"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "โค้ด"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "ยืนยัน"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "ยืนยันแล้ว"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "สาธิต"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "การชำระเงินด่วน Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "ไม่ควรเปิดใช้งานผู้ให้บริการ Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "ผิดพลาด"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "ไม่พบธุรกรรมที่ตรงกับการอ้างอิง %s"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "จ่าย"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "ชำระเงินด้วย Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "ผู้ให้บริการชำระเงิน"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "โทเค็นการชำระเงิน"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "ธุรกรรมสำหรับการชำระเงิน"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "การประมวลผลการชำระเงินล้มเหลว"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "การชำระเงินด้วยวิธีนี้จะ<b>เสร็จสมบูรณ์</b>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr "การชำระเงินที่ทำด้วยวิธีนี้จะถูก<b>ยกเลิก</b>โดยอัตโนมัติ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "การชำระเงินด้วยวิธีนี้จะยังคงอยู่ในสถานะ <b>รอดำเนินการ</b>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr "การชำระเงินด้วยวิธีนี้จะจำลองการประมวลผล <b>ข้อผิดพลาด</b>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "รอดำเนินการ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "ตั้งค่าเป็นข้อผิดพลาด"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "สถานะจำลอง"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "ทดสอบโหมด"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "สถานะที่ควรตั้งค่าธุรกรรมที่สร้างจากโทเค็นนี้"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "ธุรกรรมไม่ได้เชื่อมโยงกับโทเค็น"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "ยกเลิกการเผยแพร่"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "คุณเลือกสถานะการชำระเงินสาธิตต่อไปนี้: %s"
|
281
i18n/tr.po
Normal file
281
i18n/tr.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Emre Akayoğlu <emre.akayoglu@mechsoft.com.tr>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Murat Kaplan <muratk@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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "İptal Edildi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Tutarı Manuel Yakala"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Teslimat tamamlandığında miktarı Odoo'dan yakalayın.\n"
|
||||
"Müşteri kartlarınızdan yalnızca şu durumlarda ücret almak istiyorsanız bunu kullanın:\n"
|
||||
"malları onlara gönderebileceğinizden eminsiniz."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Kapat"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Onayla"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Doğrulanmış"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Referans %s eşleşen bir işlem bulunamadı."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Öde"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ödeme Sağlayıcı"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Ödeme Belirteci"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Ödeme İşlemi"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Beklemede"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Test Modu"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Bu ödeme sağlayıcısının teknik kodu."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "İşlem bir belirteçle bağlantılı değildir."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Yayında Değil"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr ""
|
296
i18n/uk.po
Normal file
296
i18n/uk.po
Normal file
@ -0,0 +1,296 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Успішно\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" В очікуванні\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Скасовано\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Помилка\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Місто</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Країна</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Імʼя</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Вулиця та номер будинку</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Індекс</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Email</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Деталі платежу (тестові дані)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Статус платежу</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Вулиця 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Authorize"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Скасовано"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Сума отримання вручну"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Отримайте суму від Odoo, коли доставка буде завершена.\n"
|
||||
"Використовуйте це, якщо ви хочете стягувати плату з карток своїх клієнтів, лише \n"
|
||||
"коли ви впевнені, що можете відправити їм товари."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Закрити"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Підтвердити"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Підтверджено"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Демо"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Демо експрес чекаут"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Демо провайдери ніколи не будуть увімкнені."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Помилка"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не знайдено жодної транзакції, що відповідає референсу %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Оплатити"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Платіть з Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Провайдер платежу"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Токен оплати"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платіжна операція"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Обробка платежу не вдалася"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "Платежі, зроблені через цей спосіб оплати, буде <b>успішним</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Платежі, виконані через цей спосіб оплати, будуть автоматично "
|
||||
"<b>скасовані</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Платежі, здійснені за допомогою цього способу оплати, залишаться <b>в "
|
||||
"очікуванні</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Платежі, здійснені за допомогою цього способу оплати, імітуватимуть "
|
||||
"<b>помилку</b>обробки платежу."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "В очікуванні"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Встановити на Помилку"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Статус імітації"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Режим перевірки"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr ""
|
||||
"Статус, у якому потрібно встановити транзакції, створені з цього токена."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технічний код цього провайдера платежу."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Транзакція не зв'язана з токеном."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Неопубліковано"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Ви вибрали наступний демо статус платежу: %s"
|
297
i18n/vi.po
Normal file
297
i18n/vi.po
Normal file
@ -0,0 +1,297 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Thanh toán thành công\">\n"
|
||||
" Thành công\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Đang xử lý thanh toán\">\n"
|
||||
" Đang chờ\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Thanh toán được huỷ bởi khách hàng\">\n"
|
||||
" Đã huỷ\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Lỗi xử lý\">\n"
|
||||
" Lỗi\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>Thành phố</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>Quốc gia</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>Tên</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>Đường và số nhà</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>Mã Zip</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>Email</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>Thông tin thanh toán (dữ liệu kiểm thử)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>Trạng thái thanh toán</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>Đường 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "Ủy quyền"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "Đã huỷ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "Thu hồi số tiền theo cách thủ công"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"Thu hồi số tiền ngay từ Odoo, khi giao hàng hoàn tất.\n"
|
||||
"Dùng tính năng này nếu bạn muốn tính phí khách hàng chỉ khi\n"
|
||||
"bạn chắc chắn có thể giao hàng cho họ."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "Đóng"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Mã"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "Xác nhận"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "Đã xác nhận"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "Demo thanh toán nhanh"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "Không thể bật nhà cung cấp demo."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "Lỗi"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Không tìm thấy giao dịch nào khớp với mã %s."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "Thanh toán"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "Thanh toán bằng Demo"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Nhà cung cấp dịch vụ thanh toán"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Mã thanh toán"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Giao dịch thanh toán"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Xử lý thanh toán không thành công"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr ""
|
||||
"Các khoản thanh toán được tiến hành bằng phương thức thanh toán này sẽ "
|
||||
"<b>thành công</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr ""
|
||||
"Các khoản thanh toán được tiến hành bằng phương thức thanh toán này sẽ tự "
|
||||
"động <b>bị huỷ</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr ""
|
||||
"Các khoản thanh toán được tiến hành bằng phương thức thanh toán này sẽ tiếp "
|
||||
"tục <b>bị treo</b>."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr ""
|
||||
"Các khoản thanh toán được tiến hành bằng phương thức thanh toán này sẽ tạo "
|
||||
"ra <b>lỗi</b> xử lý."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "Đang chờ"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "Đặt là Lỗi"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "Trạng thái đã hình thành"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "Chế độ kiểm thử"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "Trạng thái nên thiết lập cho các giao dịch được tạo từ token này."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Mã kỹ thuật của nhà cung cấp dịch vụ thanh toán này."
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "Giao dịch không được liên kết với token."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "Chưa xuất bản"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "Bạn đã chọn trạng thái thanh toán demo sau: %s"
|
291
i18n/zh_CN.po
Normal file
291
i18n/zh_CN.po
Normal file
@ -0,0 +1,291 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
# Chloe Wang, 2023
|
||||
# 湘子 南 <1360857908@qq.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 湘子 南 <1360857908@qq.com>, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" 支付成功\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" 处理中\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" 已取消\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" 错误\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>城市</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>国家/地区</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>名称</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>街道和编号</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>邮政编码</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>电子邮件</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>付款详情(测试数据)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>付款状态</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>街道 2</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "授权"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "已取消"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "手动获取金额"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"当交货完成时,从 ERP 获取金额。\n"
|
||||
"如果您想在确定您可以向客户发货时才从客户的卡上扣款,就可以使用这个方法。\n"
|
||||
"您确定您能把物资运给他们时才使用."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "代码"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "确认"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "已确认"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "演示"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "演示快速结账"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "应永久禁用演示提供商。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "错误"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "没有发现与参考文献%s相匹配的交易。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "支付"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "通过演示付款"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "支付令牌"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "支付交易"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "付款处理失败"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "使用此付款方式将<b>成功付款</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr "使用此付款方式支付的款项将自动<b>取消</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "使用此付款方式的付款将保持<b>待处理</b>状态。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr "使用此付款方式的付款将模拟处理<b>错误</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "待定"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "设为错误"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "模拟状态"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "测试模式"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "应设置从此令牌创建的交易所处的状态。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "该支付提供商的技术代码。"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "该交易没有与令牌挂钩。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "未发布"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "您选择了以下演示付款状态: %s"
|
290
i18n/zh_TW.po
Normal file
290
i18n/zh_TW.po
Normal file
@ -0,0 +1,290 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_demo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2024
|
||||
# Pak Wai Ho, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Pak Wai Ho, 2024\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: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"Successful payment\">\n"
|
||||
" Successful\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"Payment processing\">\n"
|
||||
" Pending\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"Payment canceled by customer\">\n"
|
||||
" Canceled\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"Processing error\">\n"
|
||||
" Error\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"simulated_payment_state\" class=\"form-select\">\n"
|
||||
" <option value=\"done\" title=\"付款成功\">\n"
|
||||
" 成功\n"
|
||||
" </option>\n"
|
||||
" <option value=\"pending\" title=\"付款處理中\">\n"
|
||||
" 待處理\n"
|
||||
" </option>\n"
|
||||
" <option value=\"cancel\" title=\"客戶已取消付款\">\n"
|
||||
" 已取消\n"
|
||||
" </option>\n"
|
||||
" <option value=\"error\" title=\"處理錯誤\">\n"
|
||||
" 錯誤\n"
|
||||
" </option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>City</b></small>"
|
||||
msgstr "<small><b>城市</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Country</b></small>"
|
||||
msgstr "<small><b>國家/地區</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Name</b></small>"
|
||||
msgstr "<small><b>名稱</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Street and Number</b></small>"
|
||||
msgstr "<small><b>街道及門牌號碼</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small><b>Zip Code</b></small>"
|
||||
msgstr "<small><b>郵遞區號</b></small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Email</small>"
|
||||
msgstr "<small>電子郵件</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Details (test data)</small>"
|
||||
msgstr "<small>付款詳情(測試數據)</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "<small>Payment Status</small>"
|
||||
msgstr "<small>付款狀態</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_inline_form
|
||||
msgid "<small>Street 2</small>"
|
||||
msgstr "<small>街道第二行</small>"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Authorize"
|
||||
msgstr "授權"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel
|
||||
msgid "Canceled"
|
||||
msgstr "已取消"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid "Capture Amount Manually"
|
||||
msgstr "手動獲取金額"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_transaction__capture_manually
|
||||
msgid ""
|
||||
"Capture the amount from Odoo, when the delivery is completed.\n"
|
||||
"Use this if you want to charge your customers cards only when\n"
|
||||
"you are sure you can ship the goods to them."
|
||||
msgstr ""
|
||||
"交付完成後,可從 Odoo 捕捉金額。\n"
|
||||
"如果只想在確定能夠將貨物運送給客戶時\n"
|
||||
"才以客戶的付款卡收費,請使用此選項。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Close"
|
||||
msgstr "關閉"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "程式碼"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Confirm"
|
||||
msgstr "確認"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__done
|
||||
msgid "Confirmed"
|
||||
msgstr "已確認"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_provider__code__demo
|
||||
msgid "Demo"
|
||||
msgstr "範例"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Demo Express Checkout"
|
||||
msgstr "模擬快速結賬"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_provider.py:0
|
||||
#, python-format
|
||||
msgid "Demo providers should never be enabled."
|
||||
msgstr "永遠不應啟用模擬服務商。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__error
|
||||
msgid "Error"
|
||||
msgstr "錯誤"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "沒有找到匹配參考 %s 的交易。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay"
|
||||
msgstr "付款"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Pay with Demo"
|
||||
msgstr "以模擬服務商付款"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "付款代碼(token)"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model,name:payment_demo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "付款交易"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_demo/static/src/js/payment_demo_mixin.js:0
|
||||
#, python-format
|
||||
msgid "Payment processing failed"
|
||||
msgstr "付款處理失敗"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will be <b>successful</b>."
|
||||
msgstr "使用此付款方式進行的付款,將會<b>成功</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will be automatically "
|
||||
"<b>canceled</b>."
|
||||
msgstr "使用此付款方式進行的付款,將自動<b>取消</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid "Payments made with this payment method will remain <b>pending</b>."
|
||||
msgstr "使用此付款方式進行的付款,將維持在<b>待處理</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.token_inline_form
|
||||
msgid ""
|
||||
"Payments made with this payment method will simulate a processing "
|
||||
"<b>error</b>."
|
||||
msgstr "使用此付款方式進行的付款,將模擬一個處理<b>錯誤</b>。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__pending
|
||||
msgid "Pending"
|
||||
msgstr "暫停"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form
|
||||
msgid "Set to Error"
|
||||
msgstr "設為錯誤"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,field_description:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "Simulated State"
|
||||
msgstr "模擬狀態"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Test Mode"
|
||||
msgstr "測試模式"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_token__demo_simulated_state
|
||||
msgid "The state in which transactions created from this token should be set."
|
||||
msgstr "應設置從此權杖創建的交易所處的狀態."
|
||||
|
||||
#. module: payment_demo
|
||||
#: model:ir.model.fields,help:payment_demo.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "此付款服務商的技術代碼。"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "交易未有連結至代碼。"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.express_checkout_form
|
||||
msgid "Unpublished"
|
||||
msgstr "未公開"
|
||||
|
||||
#. module: payment_demo
|
||||
#: model_terms:ir.ui.view,arch_db:payment_demo.payment_details
|
||||
msgid "XXXX XXXX XXXX XXXX"
|
||||
msgstr "XXXX XXXX XXXX XXXX"
|
||||
|
||||
#. module: payment_demo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_demo/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "You selected the following demo payment status: %s"
|
||||
msgstr "您選擇了以下演示付款狀態: %s"
|
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import payment_provider
|
||||
from . import payment_token
|
||||
from . import payment_transaction
|
47
models/payment_provider.py
Normal file
47
models/payment_provider.py
Normal file
@ -0,0 +1,47 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
from odoo.addons.payment_demo import const
|
||||
|
||||
|
||||
class PaymentProvider(models.Model):
|
||||
_inherit = 'payment.provider'
|
||||
|
||||
code = fields.Selection(selection_add=[('demo', 'Demo')], ondelete={'demo': 'set default'})
|
||||
|
||||
#=== COMPUTE METHODS ===#
|
||||
|
||||
@api.depends('code')
|
||||
def _compute_view_configuration_fields(self):
|
||||
""" Override of payment to hide the credentials page.
|
||||
|
||||
:return: None
|
||||
"""
|
||||
super()._compute_view_configuration_fields()
|
||||
self.filtered(lambda p: p.code == 'demo').show_credentials_page = False
|
||||
|
||||
def _compute_feature_support_fields(self):
|
||||
""" Override of `payment` to enable additional features. """
|
||||
super()._compute_feature_support_fields()
|
||||
self.filtered(lambda p: p.code == 'demo').update({
|
||||
'support_express_checkout': True,
|
||||
'support_manual_capture': 'partial',
|
||||
'support_refund': 'partial',
|
||||
'support_tokenization': True,
|
||||
})
|
||||
|
||||
# === CONSTRAINT METHODS ===#
|
||||
|
||||
@api.constrains('state', 'code')
|
||||
def _check_provider_state(self):
|
||||
if self.filtered(lambda p: p.code == 'demo' and p.state not in ('test', 'disabled')):
|
||||
raise UserError(_("Demo providers should never be enabled."))
|
||||
|
||||
def _get_default_payment_method_codes(self):
|
||||
""" Override of `payment` to return the default payment method codes. """
|
||||
default_codes = super()._get_default_payment_method_codes()
|
||||
if self.code != 'demo':
|
||||
return default_codes
|
||||
return const.DEFAULT_PAYMENT_METHOD_CODES
|
33
models/payment_token.py
Normal file
33
models/payment_token.py
Normal file
@ -0,0 +1,33 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class PaymentToken(models.Model):
|
||||
_inherit = 'payment.token'
|
||||
|
||||
demo_simulated_state = fields.Selection(
|
||||
string="Simulated State",
|
||||
help="The state in which transactions created from this token should be set.",
|
||||
selection=[
|
||||
('pending', "Pending"),
|
||||
('done', "Confirmed"),
|
||||
('cancel', "Canceled"),
|
||||
('error', "Error"),
|
||||
],
|
||||
)
|
||||
|
||||
def _build_display_name(self, *args, should_pad=True, **kwargs):
|
||||
""" Override of `payment` to build the display name without padding.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param list args: The arguments passed by QWeb when calling this method.
|
||||
:param bool should_pad: Whether the token should be padded or not.
|
||||
:param dict kwargs: Optional data.
|
||||
:return: The demo token name.
|
||||
:rtype: str
|
||||
"""
|
||||
if self.provider_code != 'demo':
|
||||
return super()._build_display_name(*args, should_pad=should_pad, **kwargs)
|
||||
return super()._build_display_name(*args, should_pad=False, **kwargs)
|
216
models/payment_transaction.py
Normal file
216
models/payment_transaction.py
Normal file
@ -0,0 +1,216 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import _, fields, models
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PaymentTransaction(models.Model):
|
||||
_inherit = 'payment.transaction'
|
||||
|
||||
capture_manually = fields.Boolean(related='provider_id.capture_manually')
|
||||
|
||||
#=== ACTION METHODS ===#
|
||||
|
||||
def action_demo_set_done(self):
|
||||
""" Set the state of the demo transaction to 'done'.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:return: None
|
||||
"""
|
||||
self.ensure_one()
|
||||
if self.provider_code != 'demo':
|
||||
return
|
||||
|
||||
notification_data = {'reference': self.reference, 'simulated_state': 'done'}
|
||||
self._handle_notification_data('demo', notification_data)
|
||||
|
||||
def action_demo_set_canceled(self):
|
||||
""" Set the state of the demo transaction to 'cancel'.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:return: None
|
||||
"""
|
||||
self.ensure_one()
|
||||
if self.provider_code != 'demo':
|
||||
return
|
||||
|
||||
notification_data = {'reference': self.reference, 'simulated_state': 'cancel'}
|
||||
self._handle_notification_data('demo', notification_data)
|
||||
|
||||
def action_demo_set_error(self):
|
||||
""" Set the state of the demo transaction to 'error'.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:return: None
|
||||
"""
|
||||
self.ensure_one()
|
||||
if self.provider_code != 'demo':
|
||||
return
|
||||
|
||||
notification_data = {'reference': self.reference, 'simulated_state': 'error'}
|
||||
self._handle_notification_data('demo', notification_data)
|
||||
|
||||
#=== BUSINESS METHODS ===#
|
||||
|
||||
def _send_payment_request(self):
|
||||
""" Override of payment to simulate a payment request.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:return: None
|
||||
"""
|
||||
super()._send_payment_request()
|
||||
if self.provider_code != 'demo':
|
||||
return
|
||||
|
||||
if not self.token_id:
|
||||
raise UserError("Demo: " + _("The transaction is not linked to a token."))
|
||||
|
||||
simulated_state = self.token_id.demo_simulated_state
|
||||
notification_data = {'reference': self.reference, 'simulated_state': simulated_state}
|
||||
self._handle_notification_data('demo', notification_data)
|
||||
|
||||
def _send_refund_request(self, **kwargs):
|
||||
""" Override of payment to simulate a refund.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param dict kwargs: The keyword arguments.
|
||||
:return: The refund transaction created to process the refund request.
|
||||
:rtype: recordset of `payment.transaction`
|
||||
"""
|
||||
refund_tx = super()._send_refund_request(**kwargs)
|
||||
if self.provider_code != 'demo':
|
||||
return refund_tx
|
||||
|
||||
notification_data = {'reference': refund_tx.reference, 'simulated_state': 'done'}
|
||||
refund_tx._handle_notification_data('demo', notification_data)
|
||||
|
||||
return refund_tx
|
||||
|
||||
def _send_capture_request(self, amount_to_capture=None):
|
||||
""" Override of `payment` to simulate a capture request. """
|
||||
child_capture_tx = super()._send_capture_request(amount_to_capture=amount_to_capture)
|
||||
if self.provider_code != 'demo':
|
||||
return child_capture_tx
|
||||
|
||||
tx = child_capture_tx or self
|
||||
notification_data = {
|
||||
'reference': tx.reference,
|
||||
'simulated_state': 'done',
|
||||
'manual_capture': True, # Distinguish manual captures from regular one-step captures.
|
||||
}
|
||||
tx._handle_notification_data('demo', notification_data)
|
||||
|
||||
return child_capture_tx
|
||||
|
||||
def _send_void_request(self, amount_to_void=None):
|
||||
""" Override of `payment` to simulate a void request. """
|
||||
child_void_tx = super()._send_void_request(amount_to_void=amount_to_void)
|
||||
if self.provider_code != 'demo':
|
||||
return child_void_tx
|
||||
|
||||
tx = child_void_tx or self
|
||||
notification_data = {'reference': tx.reference, 'simulated_state': 'cancel'}
|
||||
tx._handle_notification_data('demo', notification_data)
|
||||
|
||||
return child_void_tx
|
||||
|
||||
def _get_tx_from_notification_data(self, provider_code, notification_data):
|
||||
""" Override of payment to find the transaction based on dummy data.
|
||||
|
||||
:param str provider_code: The code of the provider that handled the transaction
|
||||
:param dict notification_data: The dummy notification data
|
||||
:return: The transaction if found
|
||||
:rtype: recordset of `payment.transaction`
|
||||
:raise: ValidationError if the data match no transaction
|
||||
"""
|
||||
tx = super()._get_tx_from_notification_data(provider_code, notification_data)
|
||||
if provider_code != 'demo' or len(tx) == 1:
|
||||
return tx
|
||||
|
||||
reference = notification_data.get('reference')
|
||||
tx = self.search([('reference', '=', reference), ('provider_code', '=', 'demo')])
|
||||
if not tx:
|
||||
raise ValidationError(
|
||||
"Demo: " + _("No transaction found matching reference %s.", reference)
|
||||
)
|
||||
return tx
|
||||
|
||||
def _process_notification_data(self, notification_data):
|
||||
""" Override of payment to process the transaction based on dummy data.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param dict notification_data: The dummy notification data
|
||||
:return: None
|
||||
:raise: ValidationError if inconsistent data were received
|
||||
"""
|
||||
super()._process_notification_data(notification_data)
|
||||
if self.provider_code != 'demo':
|
||||
return
|
||||
|
||||
# Update the provider reference.
|
||||
self.provider_reference = f'demo-{self.reference}'
|
||||
|
||||
# Create the token.
|
||||
if self.tokenize:
|
||||
# The reasons why we immediately tokenize the transaction regardless of the state rather
|
||||
# than waiting for the payment method to be validated ('authorized' or 'done') like the
|
||||
# other payment providers do are:
|
||||
# - To save the simulated state and payment details on the token while we have them.
|
||||
# - To allow customers to create tokens whose transactions will always end up in the
|
||||
# said simulated state.
|
||||
self._demo_tokenize_from_notification_data(notification_data)
|
||||
|
||||
# Update the payment state.
|
||||
state = notification_data['simulated_state']
|
||||
if state == 'pending':
|
||||
self._set_pending()
|
||||
elif state == 'done':
|
||||
if self.capture_manually and not notification_data.get('manual_capture'):
|
||||
self._set_authorized()
|
||||
else:
|
||||
self._set_done()
|
||||
# Immediately post-process the transaction if it is a refund, as the post-processing
|
||||
# will not be triggered by a customer browsing the transaction from the portal.
|
||||
if self.operation == 'refund':
|
||||
self.env.ref('payment.cron_post_process_payment_tx')._trigger()
|
||||
elif state == 'cancel':
|
||||
self._set_canceled()
|
||||
else: # Simulate an error state.
|
||||
self._set_error(_("You selected the following demo payment status: %s", state))
|
||||
|
||||
def _demo_tokenize_from_notification_data(self, notification_data):
|
||||
""" Create a new token based on the notification data.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param dict notification_data: The fake notification data to tokenize from.
|
||||
:return: None
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
state = notification_data['simulated_state']
|
||||
token = self.env['payment.token'].create({
|
||||
'provider_id': self.provider_id.id,
|
||||
'payment_method_id': self.payment_method_id.id,
|
||||
'payment_details': notification_data['payment_details'],
|
||||
'partner_id': self.partner_id.id,
|
||||
'provider_ref': 'fake provider reference',
|
||||
'demo_simulated_state': state,
|
||||
})
|
||||
self.write({
|
||||
'token_id': token,
|
||||
'tokenize': False,
|
||||
})
|
||||
_logger.info(
|
||||
"Created token with id %s for partner with id %s.", token.id, self.partner_id.id
|
||||
)
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 600 B |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M0 12h50v26a4 4 0 0 1-4 4H0V12Z" fill="#FBB945"/><path d="M4 21a4 4 0 0 1-4-4v-5a4 4 0 0 1 4-4h46v9a4 4 0 0 1-4 4H4Z" fill="#FC868B"/><path d="M0 16h50v4a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4v-4Z" fill="#953B24"/></svg>
|
After Width: | Height: | Size: 304 B |
BIN
static/img/demo.png
Normal file
BIN
static/img/demo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
99
static/src/js/express_checkout_form.js
Normal file
99
static/src/js/express_checkout_form.js
Normal file
@ -0,0 +1,99 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import {_t} from '@web/core/l10n/translation';
|
||||
import publicWidget from '@web/legacy/js/public/public_widget';
|
||||
import { ConfirmationDialog } from '@web/core/confirmation_dialog/confirmation_dialog';
|
||||
import { jsonrpc } from '@web/core/network/rpc_service';
|
||||
import { debounce } from '@web/core/utils/timing';
|
||||
|
||||
import { paymentExpressCheckoutForm } from '@payment/js/express_checkout_form';
|
||||
import paymentDemoMixin from '@payment_demo/js/payment_demo_mixin';
|
||||
|
||||
paymentExpressCheckoutForm.include({
|
||||
events: Object.assign({}, publicWidget.Widget.prototype.events, {
|
||||
'click button[name="o_payment_submit_button"]': '_initiateExpressPayment',
|
||||
}),
|
||||
|
||||
// #=== WIDGET LIFECYCLE ===#
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
start: async function () {
|
||||
await this._super(...arguments);
|
||||
document.querySelector('[name="o_payment_submit_button"]')?.removeAttribute('disabled');
|
||||
this.rpc = this.bindService('rpc');
|
||||
this._initiateExpressPayment = debounce(this._initiateExpressPayment, 500, true);
|
||||
},
|
||||
|
||||
// #=== EVENT HANDLERS ===#
|
||||
|
||||
/**
|
||||
* Process the payment.
|
||||
*
|
||||
* @private
|
||||
* @param {Event} ev
|
||||
* @return {void}
|
||||
*/
|
||||
async _initiateExpressPayment(ev) {
|
||||
ev.stopPropagation();
|
||||
ev.preventDefault();
|
||||
|
||||
const shippingInformationRequired = document.querySelector(
|
||||
'[name="o_payment_express_checkout_form"]'
|
||||
).dataset.shippingInfoRequired;
|
||||
const providerId = ev.target.parentElement.dataset.providerId;
|
||||
let expressShippingAddress = {};
|
||||
if (shippingInformationRequired){
|
||||
const shippingInfo = document.querySelector(
|
||||
`#o_payment_demo_shipping_info_${providerId}`
|
||||
);
|
||||
expressShippingAddress = {
|
||||
'name': shippingInfo.querySelector('#o_payment_demo_shipping_name').value,
|
||||
'email': shippingInfo.querySelector('#o_payment_demo_shipping_email').value,
|
||||
'street': shippingInfo.querySelector('#o_payment_demo_shipping_address').value,
|
||||
'street2': shippingInfo.querySelector('#o_payment_demo_shipping_address2').value,
|
||||
'zip': shippingInfo.querySelector('#o_payment_demo_shipping_zip').value,
|
||||
'city': shippingInfo.querySelector('#o_payment_demo_shipping_city').value,
|
||||
'country': shippingInfo.querySelector('#o_payment_demo_shipping_country').value,
|
||||
};
|
||||
// Call the shipping address update route to fetch the shipping options.
|
||||
const availableCarriers = await this.rpc(
|
||||
this.paymentContext['shippingAddressUpdateRoute'],
|
||||
{partial_shipping_address: expressShippingAddress},
|
||||
);
|
||||
if (availableCarriers.length > 0) {
|
||||
const id = parseInt(availableCarriers[0].id);
|
||||
await this.rpc('/shop/update_carrier', {carrier_id: id});
|
||||
} else {
|
||||
this.call('dialog', 'add', ConfirmationDialog, {
|
||||
title: _t("Validation Error"),
|
||||
body: _t("No delivery method is available."),
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
await jsonrpc(
|
||||
document.querySelector(
|
||||
'[name="o_payment_express_checkout_form"]'
|
||||
).dataset['expressCheckoutRoute'],
|
||||
{
|
||||
'shipping_address': expressShippingAddress,
|
||||
'billing_address': {
|
||||
'name': 'Demo User',
|
||||
'email': 'demo@test.com',
|
||||
'street': 'Rue des Bourlottes 9',
|
||||
'street2': '23',
|
||||
'country': 'BE',
|
||||
'city':'Ramillies',
|
||||
'zip':'1367'
|
||||
},
|
||||
}
|
||||
);
|
||||
const processingValues = await jsonrpc(
|
||||
this.paymentContext['transactionRoute'],
|
||||
this._prepareTransactionRouteParams(providerId),
|
||||
)
|
||||
paymentDemoMixin.processDemoPayment(processingValues);
|
||||
},
|
||||
});
|
35
static/src/js/payment_demo_mixin.js
Normal file
35
static/src/js/payment_demo_mixin.js
Normal file
@ -0,0 +1,35 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { jsonrpc, RPCError } from "@web/core/network/rpc_service";
|
||||
|
||||
export default {
|
||||
|
||||
/**
|
||||
* Simulate a feedback from a payment provider and redirect the customer to the status page.
|
||||
*
|
||||
* @private
|
||||
* @param {object} processingValues - The processing values of the transaction.
|
||||
* @return {void}
|
||||
*/
|
||||
async processDemoPayment(processingValues) {
|
||||
const customerInput = document.getElementById('customer_input').value;
|
||||
const simulatedPaymentState = document.getElementById('simulated_payment_state').value;
|
||||
|
||||
jsonrpc('/payment/demo/simulate_payment', {
|
||||
'reference': processingValues.reference,
|
||||
'payment_details': customerInput,
|
||||
'simulated_state': simulatedPaymentState,
|
||||
}).then(() => {
|
||||
window.location = '/payment/status';
|
||||
}).catch(error => {
|
||||
if (error instanceof RPCError) {
|
||||
this._displayErrorDialog(_t("Payment processing failed"), error.data.message);
|
||||
this._enableButton?.(); // This method doesn't exists in Express Checkout form.
|
||||
} else {
|
||||
return Promise.reject(error);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
};
|
53
static/src/js/payment_form.js
Normal file
53
static/src/js/payment_form.js
Normal file
@ -0,0 +1,53 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import paymentForm from '@payment/js/payment_form';
|
||||
import paymentDemoMixin from '@payment_demo/js/payment_demo_mixin';
|
||||
|
||||
paymentForm.include({
|
||||
|
||||
// #=== DOM MANIPULATION ===#
|
||||
|
||||
/**
|
||||
* Prepare the inline form of Demo for direct payment.
|
||||
*
|
||||
* @override method from @payment/js/payment_form
|
||||
* @private
|
||||
* @param {number} providerId - The id of the selected payment option's provider.
|
||||
* @param {string} providerCode - The code of the selected payment option's provider.
|
||||
* @param {number} paymentOptionId - The id of the selected payment option
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @param {string} flow - The online payment flow of the selected payment option.
|
||||
* @return {void}
|
||||
*/
|
||||
async _prepareInlineForm(providerId, providerCode, paymentOptionId, paymentMethodCode, flow) {
|
||||
if (providerCode !== 'demo') {
|
||||
this._super(...arguments);
|
||||
return;
|
||||
} else if (flow === 'token') {
|
||||
return;
|
||||
}
|
||||
this._setPaymentFlow('direct');
|
||||
},
|
||||
|
||||
// #=== PAYMENT FLOW ===#
|
||||
|
||||
/**
|
||||
* Simulate a feedback from a payment provider and redirect the customer to the status page.
|
||||
*
|
||||
* @override method from payment.payment_form
|
||||
* @private
|
||||
* @param {string} providerCode - The code of the selected payment option's provider.
|
||||
* @param {number} paymentOptionId - The id of the selected payment option.
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @param {object} processingValues - The processing values of the transaction.
|
||||
* @return {void}
|
||||
*/
|
||||
async _processDirectFlow(providerCode, paymentOptionId, paymentMethodCode, processingValues) {
|
||||
if (providerCode !== 'demo') {
|
||||
this._super(...arguments);
|
||||
return;
|
||||
}
|
||||
paymentDemoMixin.processDemoPayment(processingValues);
|
||||
},
|
||||
|
||||
});
|
5
tests/__init__.py
Normal file
5
tests/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_payment_transaction
|
||||
from . import test_processing_flows
|
18
tests/common.py
Normal file
18
tests/common.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.payment.tests.common import PaymentCommon
|
||||
|
||||
|
||||
class PaymentDemoCommon(PaymentCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.provider = cls._prepare_provider(code='demo')
|
||||
|
||||
cls.notification_data = {
|
||||
'reference': cls.reference,
|
||||
'payment_details': '1234',
|
||||
'simulated_state': 'done',
|
||||
}
|
102
tests/test_payment_transaction.py
Normal file
102
tests/test_payment_transaction.py
Normal file
@ -0,0 +1,102 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from unittest.mock import patch
|
||||
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment_demo.tests.common import PaymentDemoCommon
|
||||
from odoo.addons.payment.tests.http_common import PaymentHttpCommon
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestPaymentTransaction(PaymentDemoCommon, PaymentHttpCommon):
|
||||
|
||||
def test_processing_notification_data_sets_transaction_pending(self):
|
||||
""" Test that the transaction state is set to 'pending' when the notification data indicate
|
||||
a pending payment. """
|
||||
tx = self._create_transaction('direct')
|
||||
tx._process_notification_data(dict(self.notification_data, simulated_state='pending'))
|
||||
self.assertEqual(tx.state, 'pending')
|
||||
|
||||
def test_processing_notification_data_authorizes_transaction(self):
|
||||
""" Test that the transaction state is set to 'authorize' when the notification data
|
||||
indicate a successful payment and manual capture is enabled. """
|
||||
self.provider.capture_manually = True
|
||||
tx = self._create_transaction('direct')
|
||||
tx._process_notification_data(self.notification_data)
|
||||
self.assertEqual(tx.state, 'authorized')
|
||||
|
||||
def test_processing_notification_data_confirms_transaction(self):
|
||||
""" Test that the transaction state is set to 'done' when the notification data indicate a
|
||||
successful payment. """
|
||||
tx = self._create_transaction('direct')
|
||||
tx._process_notification_data(self.notification_data)
|
||||
self.assertEqual(tx.state, 'done')
|
||||
|
||||
def test_processing_notification_data_cancels_transaction(self):
|
||||
""" Test that the transaction state is set to 'cancel' when the notification data indicate
|
||||
an unsuccessful payment. """
|
||||
tx = self._create_transaction('direct')
|
||||
tx._process_notification_data(dict(self.notification_data, simulated_state='cancel'))
|
||||
self.assertEqual(tx.state, 'cancel')
|
||||
|
||||
def test_processing_notification_data_sets_transaction_in_error(self):
|
||||
""" Test that the transaction state is set to 'error' when the notification data indicate
|
||||
an error during the payment. """
|
||||
tx = self._create_transaction('direct')
|
||||
tx._process_notification_data(dict(self.notification_data, simulated_state='error'))
|
||||
self.assertEqual(tx.state, 'error')
|
||||
|
||||
def test_processing_notification_data_tokenizes_transaction(self):
|
||||
""" Test that the transaction is tokenized when it was requested and the notification data
|
||||
include token data. """
|
||||
tx = self._create_transaction('direct', tokenize=True)
|
||||
with patch(
|
||||
'odoo.addons.payment_demo.models.payment_transaction.PaymentTransaction'
|
||||
'._demo_tokenize_from_notification_data'
|
||||
) as tokenize_mock:
|
||||
tx._process_notification_data(self.notification_data)
|
||||
self.assertEqual(tokenize_mock.call_count, 1)
|
||||
|
||||
@mute_logger('odoo.addons.payment_demo.models.payment_transaction')
|
||||
def test_processing_notification_data_propagates_simulated_state_to_token(self):
|
||||
""" Test that the simulated state of the notification data is set on the token when
|
||||
processing notification data. """
|
||||
for counter, state in enumerate(['pending', 'done', 'cancel', 'error']):
|
||||
tx = self._create_transaction(
|
||||
'direct', reference=f'{self.reference}-{counter}', tokenize=True
|
||||
)
|
||||
tx._process_notification_data(dict(self.notification_data, simulated_state=state))
|
||||
self.assertEqual(tx.token_id.demo_simulated_state, state)
|
||||
|
||||
def test_making_a_payment_request_propagates_token_simulated_state_to_transaction(self):
|
||||
""" Test that the simulated state of the token is set on the transaction when making a
|
||||
payment request. """
|
||||
for counter, state in enumerate(['pending', 'done', 'cancel', 'error']):
|
||||
tx = self._create_transaction(
|
||||
'direct', reference=f'{self.reference}-{counter}'
|
||||
)
|
||||
tx.token_id = self._create_token(demo_simulated_state=state)
|
||||
tx._send_payment_request()
|
||||
self.assertEqual(tx.state, tx.token_id.demo_simulated_state)
|
||||
|
||||
def test_send_full_capture_request_does_not_create_capture_tx(self):
|
||||
self.provider.capture_manually = True
|
||||
source_tx = self._create_transaction(flow='direct', state='authorized')
|
||||
child_tx = source_tx._send_capture_request()
|
||||
self.assertFalse(
|
||||
child_tx, msg="Full capture should not create a child transaction."
|
||||
)
|
||||
|
||||
def test_send_partial_capture_request_creates_capture_tx(self):
|
||||
self.provider.capture_manually = True
|
||||
source_tx = self._create_transaction(flow='direct', state='authorized')
|
||||
child_tx = source_tx._send_capture_request(amount_to_capture=10)
|
||||
self.assertTrue(
|
||||
source_tx.child_transaction_ids,
|
||||
msg="Partial capture should create a child transaction and linked it to the source tx.",
|
||||
)
|
||||
self.assertEqual(
|
||||
child_tx.amount, 10, msg="Child transaction should have the requested amount."
|
||||
)
|
24
tests/test_processing_flows.py
Normal file
24
tests/test_processing_flows.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from unittest.mock import patch
|
||||
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.payment_demo.controllers.main import PaymentDemoController
|
||||
from odoo.addons.payment_demo.tests.common import PaymentDemoCommon
|
||||
from odoo.addons.payment.tests.http_common import PaymentHttpCommon
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestProcessingFlows(PaymentDemoCommon, PaymentHttpCommon):
|
||||
|
||||
def test_portal_payment_triggers_processing(self):
|
||||
""" Test that paying from the frontend triggers the processing of the notification data. """
|
||||
self._create_transaction(flow='direct')
|
||||
url = self._build_url(PaymentDemoController._simulation_url)
|
||||
with patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction'
|
||||
'._handle_notification_data'
|
||||
) as handle_notification_data_mock:
|
||||
self.make_jsonrpc_request(url, params=self.notification_data)
|
||||
self.assertEqual(handle_notification_data_mock.call_count, 1)
|
228
views/payment_demo_templates.xml
Normal file
228
views/payment_demo_templates.xml
Normal file
@ -0,0 +1,228 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="payment_demo.token_form" inherit_id="payment.token_form">
|
||||
</template>
|
||||
|
||||
<template id="payment_demo.payment_method_form" inherit_id="payment.method_form">
|
||||
</template>
|
||||
|
||||
<template id="inline_form">
|
||||
<div t-attf-id="demo-container-{{provider_id}}">
|
||||
<t t-call="payment_demo.payment_details"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="token_inline_form">
|
||||
<div t-attf-id="demo-token-container-{{token_sudo.id}}">
|
||||
<div class="alert alert-warning mb-0">
|
||||
<span t-if="token_sudo.demo_simulated_state=='pending'">
|
||||
Payments made with this payment method will remain <b>pending</b>.
|
||||
</span>
|
||||
<span t-elif="token_sudo.demo_simulated_state=='done'">
|
||||
Payments made with this payment method will be <b>successful</b>.
|
||||
</span>
|
||||
<span t-elif="token_sudo.demo_simulated_state=='cancel'">
|
||||
Payments made with this payment method will be automatically <b>canceled</b>.
|
||||
</span>
|
||||
<span t-else="">
|
||||
Payments made with this payment method will simulate a processing <b>error</b>.
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="express_checkout_form">
|
||||
<div name="o_express_checkout_container"
|
||||
t-attf-id="o_demo_express_checkout_container_{{provider_sudo.id}}"
|
||||
t-att-data-provider-id="provider_sudo.id"
|
||||
t-att-data-provider-code="provider_sudo.code"
|
||||
>
|
||||
<button type="button"
|
||||
class="btn btn-primary mt-2 w-100"
|
||||
data-bs-toggle="modal"
|
||||
t-attf-data-bs-target="#o_payment_demo_modal_{{provider_sudo.id}}"
|
||||
>
|
||||
Pay with Demo
|
||||
<span t-if="not provider_sudo.is_published"
|
||||
class="badge rounded-pill text-bg-danger ms-1"
|
||||
>
|
||||
Unpublished
|
||||
</span>
|
||||
</button>
|
||||
<div t-attf-id="o_payment_demo_modal_{{provider_sudo.id}}"
|
||||
class="modal fade mt-5"
|
||||
tabindex="-1"
|
||||
aria-labelledby="o_payment_demo_modal_label"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="o_payment_demo_modal_label">
|
||||
Demo Express Checkout
|
||||
</h5>
|
||||
<span t-if="provider_sudo.state == 'test'"
|
||||
class="badge rounded-pill text-bg-warning ms-1"
|
||||
>
|
||||
Test Mode
|
||||
</span>
|
||||
<button type="button"
|
||||
class="btn-close"
|
||||
data-bs-dismiss="modal"
|
||||
aria-label="Close"
|
||||
/>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<t t-call="payment_demo.express_inline_form">
|
||||
<t t-set="provider_id" t-value="provider_sudo.id"/>
|
||||
</t>
|
||||
<div class="float-end mt-2" t-att-data-provider-id="provider_sudo.id">
|
||||
<t t-call="payment.submit_button">
|
||||
<t t-set="submit_button_label">Pay</t>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="express_inline_form">
|
||||
<div>
|
||||
<t t-call="payment_demo.payment_details"/>
|
||||
<div t-if="shipping_info_required"
|
||||
t-attf-id="o_payment_demo_shipping_info_{{provider_id}}"
|
||||
>
|
||||
<t t-set="customer" t-value="request.env.user.partner_id"/>
|
||||
<div class="row mt-0">
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_name" class=" mt-0">
|
||||
<small><b>Name</b></small>
|
||||
</label>
|
||||
<input type="text"
|
||||
id="o_payment_demo_shipping_name"
|
||||
class="form-control"
|
||||
t-att-value="customer.name"
|
||||
readonly="1"
|
||||
required=""
|
||||
/>
|
||||
</div>
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_email" class=" mt-0">
|
||||
<small>Email</small>
|
||||
</label>
|
||||
<input type="text"
|
||||
id="o_payment_demo_shipping_email"
|
||||
class="form-control"
|
||||
t-att-value="customer.email or 'example@example.com'"
|
||||
readonly="1"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_address" class="mt-1">
|
||||
<small><b>Street and Number</b></small>
|
||||
</label>
|
||||
<input type="text"
|
||||
id="o_payment_demo_shipping_address"
|
||||
class="form-control"
|
||||
required=""
|
||||
t-att-value="customer.street or 'Rue des Bourlottes 9'"
|
||||
readonly="1"
|
||||
/>
|
||||
</div>
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_address2" class="mt-1">
|
||||
<small>Street 2</small>
|
||||
</label>
|
||||
<input type="text"
|
||||
id="o_payment_demo_shipping_address2"
|
||||
class="form-control"
|
||||
t-att-value="customer.street2"
|
||||
readonly="1"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_zip" class="mt-1">
|
||||
<small><b>Zip Code</b></small>
|
||||
</label>
|
||||
<input type="text"
|
||||
id="o_payment_demo_shipping_zip"
|
||||
class="form-control"
|
||||
required=""
|
||||
t-att-value="customer.zip or '1367'"
|
||||
readonly="1"
|
||||
/>
|
||||
</div>
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_city" class="mt-1">
|
||||
<small><b>City</b></small>
|
||||
</label>
|
||||
<input type="text"
|
||||
id="o_payment_demo_shipping_city"
|
||||
class="form-control"
|
||||
t-att-value="customer.city or 'Ramillies'"
|
||||
readonly="1"
|
||||
required=""
|
||||
/>
|
||||
</div>
|
||||
<div class="col mb-0">
|
||||
<label for="o_payment_demo_shipping_country" class="mt-1">
|
||||
<small><b>Country</b></small>
|
||||
</label>
|
||||
<select id="o_payment_demo_shipping_country"
|
||||
class="form-select"
|
||||
disabled="true"
|
||||
>
|
||||
<option t-att-value="customer.country_id.code or 'BE'"
|
||||
t-out="customer.country_id.name or 'Belgium'"
|
||||
/>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="payment_details">
|
||||
<div class="row gap2 gap-md-0">
|
||||
<input name="provider_id" type="hidden" id="provider_id" t-att-value="id"/>
|
||||
<input name="partner_id" type="hidden" t-att-value="partner_id"/>
|
||||
<div class="col-12 col-md mt-0 mb-0">
|
||||
<label for="customer_input" class="mt-0">
|
||||
<small>Payment Details (test data)</small>
|
||||
</label>
|
||||
<input type="text"
|
||||
name="customer_input"
|
||||
id="customer_input"
|
||||
class="form-control"
|
||||
placeholder="XXXX XXXX XXXX XXXX"/>
|
||||
</div>
|
||||
<div class="col-12 col-md mb-0">
|
||||
<label for="simulated_payment_state" class="mt-0 text-muted">
|
||||
<small>Payment Status</small>
|
||||
</label>
|
||||
<select id="simulated_payment_state" class="form-select">
|
||||
<option value="done" title="Successful payment">
|
||||
Successful
|
||||
</option>
|
||||
<option value="pending" title="Payment processing">
|
||||
Pending
|
||||
</option>
|
||||
<option value="cancel" title="Payment canceled by customer">
|
||||
Canceled
|
||||
</option>
|
||||
<option value="error" title="Processing error">
|
||||
Error
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</odoo>
|
18
views/payment_token_views.xml
Normal file
18
views/payment_token_views.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_token_form" model="ir.ui.view">
|
||||
<field name="name">Demo Token Form</field>
|
||||
<field name="model">payment.token</field>
|
||||
<field name="inherit_id" ref="payment.payment_token_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="general_information" position="inside">
|
||||
<field name="provider_code" invisible="1"/>
|
||||
<field name="demo_simulated_state"
|
||||
invisible="provider_code != 'demo'"
|
||||
required="provider_code == 'demo'"/>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
33
views/payment_transaction_views.xml
Normal file
33
views/payment_transaction_views.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_transaction_form" model="ir.ui.view">
|
||||
<field name="name">Demo Transaction Form</field>
|
||||
<field name="model">payment.transaction</field>
|
||||
<field name="inherit_id" ref="payment.payment_transaction_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<header position="inside">
|
||||
<field name="capture_manually" invisible="1"/>
|
||||
<button string="Authorize"
|
||||
type="object"
|
||||
name="action_demo_set_done"
|
||||
class="oe_highlight"
|
||||
invisible="provider_code != 'demo' or not capture_manually or state != 'pending'"/>
|
||||
<button string="Confirm"
|
||||
type="object"
|
||||
name="action_demo_set_done"
|
||||
class="oe_highlight"
|
||||
invisible="provider_code != 'demo' or capture_manually or state != 'pending'"/>
|
||||
<button string="Cancel"
|
||||
type="object"
|
||||
name="action_demo_set_canceled"
|
||||
invisible="provider_code != 'demo' or state != 'pending'"/>
|
||||
<button string="Set to Error"
|
||||
type="object"
|
||||
name="action_demo_set_error"
|
||||
invisible="provider_code != 'demo' or state != 'pending'"/>
|
||||
</header>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user