Initial import from Docker volume
This commit is contained in:
33
modules/account_payment_stripe/__init__.py
Executable file
33
modules/account_payment_stripe/__init__.py
Executable file
@@ -0,0 +1,33 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.pool import Pool
|
||||
|
||||
from . import ir, party, payment, routes
|
||||
|
||||
__all__ = ['register', 'routes']
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
payment.Account,
|
||||
payment.Refund,
|
||||
payment.Customer,
|
||||
payment.CustomerFingerprint,
|
||||
payment.CustomerIdentical,
|
||||
payment.Journal,
|
||||
payment.Group,
|
||||
payment.Payment,
|
||||
payment.CustomerSourceDetachAsk,
|
||||
party.Party,
|
||||
party.PartyReceptionDirectDebit,
|
||||
ir.Cron,
|
||||
module='account_payment_stripe', type_='model')
|
||||
Pool.register(
|
||||
payment.Checkout,
|
||||
payment.CustomerSourceDetach,
|
||||
party.Replace,
|
||||
module='account_payment_stripe', type_='wizard')
|
||||
Pool.register(
|
||||
payment.CheckoutPage,
|
||||
module='account_payment_stripe', type_='report')
|
||||
BIN
modules/account_payment_stripe/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/__init__.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/__init__.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/common.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/common.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/common.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/common.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/ir.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/ir.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/ir.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/ir.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/party.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/party.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/party.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/party.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/payment.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/payment.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/payment.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/payment.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/routes.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/routes.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/__pycache__/routes.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/__pycache__/routes.cpython-311.pyc
Executable file
Binary file not shown.
145
modules/account_payment_stripe/checkout.html
Executable file
145
modules/account_payment_stripe/checkout.html
Executable file
@@ -0,0 +1,145 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns:py="http://genshi.edgewall.org/">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>Stripe Checkout</title>
|
||||
<script src="https://js.stripe.com/v3/">
|
||||
</script>
|
||||
<style>
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
label {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
button {
|
||||
background-color: #337ab7;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #2e6da4;
|
||||
color: #fff;
|
||||
display: block;
|
||||
font-size:2em;
|
||||
margin: 0 auto;
|
||||
padding: 0.5em 1em;
|
||||
}
|
||||
.wrapper {
|
||||
width: 670px;
|
||||
margin: 0 auto;
|
||||
height: 100%;
|
||||
}
|
||||
.StripeElement {
|
||||
background-color: white;
|
||||
border-radius: 4px;
|
||||
border: 1px solid transparent;
|
||||
box-shadow: 0 1px 3px 0 #e6ebf1;
|
||||
box-sizing: border-box;
|
||||
height: 40px;
|
||||
padding: 10px 12px;
|
||||
transition: box-shadow 150ms ease;
|
||||
}
|
||||
.StripeElement--focus {
|
||||
box-shadow: 0 1px 3px 0 #cfd7df;
|
||||
}
|
||||
.StripeElement--invalid {
|
||||
border-color: #fa755a;
|
||||
}
|
||||
.StripeElement--webkit-autofill {
|
||||
background-color: #fefde5 !important;
|
||||
}
|
||||
#card-errors {
|
||||
padding: 4px 0;
|
||||
color: #fa755a;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<py:for each="record in records[:1]">
|
||||
<py:with vars="intent = record.stripe_intent">
|
||||
<h1>${record.party.rec_name}</h1>
|
||||
<div class="wrapper">
|
||||
<form method="POST" id="form">
|
||||
<div>
|
||||
<py:if test="not data.get('payment_method')">
|
||||
<label for="card-element">
|
||||
Credit or debit card
|
||||
</label>
|
||||
<div id="card-element">
|
||||
</div>
|
||||
</py:if>
|
||||
<div id="card-errors" role="alert">
|
||||
</div>
|
||||
</div>
|
||||
<button id="card-button" data-secret="${intent.client_secret}" data-model="${data['model']}">
|
||||
<py:choose test="data['model']">
|
||||
<py:when test="'account.payment'">
|
||||
Pay ${record.currency.symbol}${record.amount}
|
||||
</py:when>
|
||||
<py:when test="'account.payment.stripe.customer'">
|
||||
Register card
|
||||
</py:when>
|
||||
</py:choose>
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<script>
|
||||
var stripe = Stripe('${record.stripe_account.publishable_key}');
|
||||
var elements = stripe.elements();
|
||||
var style = {
|
||||
base: {
|
||||
color: '#32325d',
|
||||
fontSize: '16px',
|
||||
'::placeholder': {
|
||||
color: '#aab7c4'
|
||||
}
|
||||
},
|
||||
invalid: {
|
||||
color: '#fa755a',
|
||||
iconColor: '#fa755a'
|
||||
}
|
||||
};
|
||||
var card;
|
||||
if (document.getElementById('card-element')) {
|
||||
card = elements.create('card', {style: style});
|
||||
card.mount('#card-element');
|
||||
|
||||
card.addEventListener('change', function(event) {
|
||||
var displayError = document.getElementById('card-errors');
|
||||
if (event.error) {
|
||||
displayError.textContent = event.error.message;
|
||||
} else {
|
||||
displayError.textContent = '';
|
||||
}
|
||||
});
|
||||
} else {
|
||||
card = {payment_method: '${data.get('payment_method', '')}'}
|
||||
}
|
||||
|
||||
var cardButton = document.getElementById('card-button');
|
||||
var clientSecret = cardButton.dataset.secret;
|
||||
var model = cardButton.dataset.model;
|
||||
var form = document.getElementById('form');
|
||||
form.addEventListener('submit', function(event) {
|
||||
event.preventDefault();
|
||||
|
||||
var prm;
|
||||
if (model == 'account.payment.stripe.customer') {
|
||||
prm = stripe.handleCardSetup(clientSecret, card);
|
||||
} else {
|
||||
prm = stripe.handleCardPayment(clientSecret, card);
|
||||
}
|
||||
prm.then(function(result) {
|
||||
if (result.error) {
|
||||
var errorElement = document.getElementById('card-errors');
|
||||
errorElement.textContent = result.error.message;
|
||||
} else {
|
||||
form.submit();
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</py:with>
|
||||
</py:for>
|
||||
</body>
|
||||
</html>
|
||||
132
modules/account_payment_stripe/common.py
Executable file
132
modules/account_payment_stripe/common.py
Executable file
@@ -0,0 +1,132 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
from trytond.model import fields
|
||||
from trytond.pyson import Eval
|
||||
|
||||
|
||||
class StripeCustomerMethodMixin:
|
||||
__slots__ = ()
|
||||
|
||||
stripe_account = fields.Function(fields.Many2One(
|
||||
'account.payment.stripe.account', "Stripe Account"),
|
||||
'on_change_with_stripe_account')
|
||||
|
||||
stripe_customer = fields.Many2One(
|
||||
'account.payment.stripe.customer', "Stripe Customer",
|
||||
domain=[
|
||||
('party', '=', Eval('party', -1)),
|
||||
('stripe_account', '=', Eval('stripe_account', -1)),
|
||||
],
|
||||
states={
|
||||
'invisible': Eval('process_method') != 'stripe',
|
||||
'readonly': (
|
||||
~Eval('party') | (Eval('party', -1) < 0)
|
||||
| ~Eval('stripe_account') | (Eval('stripe_account', -1) < 0)),
|
||||
})
|
||||
|
||||
stripe_customer_source = fields.Char(
|
||||
"Stripe Customer Source",
|
||||
states={
|
||||
'invisible': (
|
||||
(Eval('process_method') != 'stripe')
|
||||
| ~Eval('stripe_customer')
|
||||
| Eval('stripe_customer_payment_method')),
|
||||
})
|
||||
# Use Function field with selection to avoid to query Stripe
|
||||
# to validate the value
|
||||
stripe_customer_source_selection = fields.Function(fields.Selection(
|
||||
'get_stripe_customer_sources', "Stripe Customer Source",
|
||||
states={
|
||||
'invisible': (
|
||||
(Eval('process_method') != 'stripe')
|
||||
| ~Eval('stripe_customer')
|
||||
| Eval('stripe_customer_payment_method')),
|
||||
}),
|
||||
'get_stripe_customer_source', setter='set_stripe_customer_source')
|
||||
|
||||
stripe_customer_payment_method = fields.Char(
|
||||
"Stripe Payment Method",
|
||||
states={
|
||||
'invisible': (
|
||||
(Eval('process_method') != 'stripe')
|
||||
| ~Eval('stripe_customer')
|
||||
| Eval('stripe_customer_source')),
|
||||
})
|
||||
# Use Function field with selection to avoid to query Stripe
|
||||
# to validate the value
|
||||
stripe_customer_payment_method_selection = fields.Function(
|
||||
fields.Selection(
|
||||
'get_stripe_customer_payment_methods',
|
||||
"Stripe Customer Payment Method",
|
||||
states={
|
||||
'invisible': (
|
||||
(Eval('process_method') != 'stripe')
|
||||
| ~Eval('stripe_customer')
|
||||
| Eval('stripe_customer_source')),
|
||||
}),
|
||||
'get_stripe_customer_payment_method',
|
||||
setter='set_stripe_customer_payment_method')
|
||||
|
||||
def on_change_party(self):
|
||||
try:
|
||||
super().on_change_party()
|
||||
except AttributeError:
|
||||
pass
|
||||
self.stripe_customer = None
|
||||
self.stripe_customer_source = None
|
||||
self.stripe_customer_source_selection = None
|
||||
|
||||
@fields.depends('journal')
|
||||
def on_change_with_stripe_account(self, name=None):
|
||||
if self.journal and self.journal.process_method == 'stripe':
|
||||
return self.journal.stripe_account
|
||||
|
||||
@fields.depends('stripe_customer', 'stripe_customer_source')
|
||||
def get_stripe_customer_sources(self):
|
||||
sources = [('', '')]
|
||||
if self.stripe_customer:
|
||||
sources.extend(self.stripe_customer.sources())
|
||||
if (self.stripe_customer_source
|
||||
and self.stripe_customer_source not in dict(sources)):
|
||||
sources.append(
|
||||
(self.stripe_customer_source, self.stripe_customer_source))
|
||||
return sources
|
||||
|
||||
@fields.depends(
|
||||
'stripe_customer_source_selection',
|
||||
'stripe_customer_source')
|
||||
def on_change_stripe_customer_source_selection(self):
|
||||
self.stripe_customer_source = self.stripe_customer_source_selection
|
||||
|
||||
def get_stripe_customer_source(self, name):
|
||||
return self.stripe_customer_source
|
||||
|
||||
@classmethod
|
||||
def set_stripe_customer_source(cls, payments, name, value):
|
||||
pass
|
||||
|
||||
@fields.depends('stripe_customer', 'stripe_customer_payment_method')
|
||||
def get_stripe_customer_payment_methods(self):
|
||||
methods = [('', '')]
|
||||
if self.stripe_customer:
|
||||
methods.extend(self.stripe_customer.payment_methods())
|
||||
if (self.stripe_customer_payment_method
|
||||
and self.stripe_customer_payment_method not in dict(methods)):
|
||||
methods.append(
|
||||
(self.stripe_customer_payment_method,
|
||||
self.stripe_customer_payment_method))
|
||||
return methods
|
||||
|
||||
@fields.depends(
|
||||
'stripe_customer_payment_method_selection',
|
||||
'stripe_customer_payment_method')
|
||||
def on_change_stripe_customer_payment_method_selection(self):
|
||||
self.stripe_customer_payment_method = (
|
||||
self.stripe_customer_payment_method_selection)
|
||||
|
||||
def get_stripe_customer_payment_method(self, name):
|
||||
return self.stripe_customer_payment_method
|
||||
|
||||
@classmethod
|
||||
def set_stripe_customer_payment_method(cls, payments, name, value):
|
||||
pass
|
||||
31
modules/account_payment_stripe/email_checkout.html
Executable file
31
modules/account_payment_stripe/email_checkout.html
Executable file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns:py="http://genshi.edgewall.org/">
|
||||
<head>
|
||||
<title>Checkout</title>
|
||||
</head>
|
||||
<body>
|
||||
<py:for each="payment in records">
|
||||
<div style="display: block; text-align: center">
|
||||
<div>
|
||||
<h1>Authorization needed</h1>
|
||||
<p>You need to authorize the payment ${payment.rec_name}.</p>
|
||||
<a href="${payment.stripe_checkout_url}"
|
||||
style="display: block; text-decoration: none;
|
||||
width: max-content; margin: 0 auto;
|
||||
padding: 0.5em 1em; font-size:2em;
|
||||
border: 1px solid #2E6DA4; border-radius: 4px;
|
||||
color: #FFF; background-color: #337AB7;">
|
||||
Checkout
|
||||
</a>
|
||||
</div>
|
||||
<hr style="margin-top: 20px;
|
||||
border-style: solid none none; border-color: #EEE"></hr>
|
||||
<div style="font-size: 80%; color: #777">
|
||||
<p>Button is not working? Paste this into your browser:</p>
|
||||
<p>${payment.stripe_checkout_url}</p>
|
||||
<p>If you didn't make this request, you can ignore this email.</p>
|
||||
</div>
|
||||
</div>
|
||||
</py:for>
|
||||
</body>
|
||||
</html>
|
||||
25
modules/account_payment_stripe/ir.py
Executable file
25
modules/account_payment_stripe/ir.py
Executable file
@@ -0,0 +1,25 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
|
||||
class Cron(metaclass=PoolMeta):
|
||||
__name__ = 'ir.cron'
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
cls.method.selection.extend([
|
||||
('account.payment|stripe_charge', "Charge Stripe Payments"),
|
||||
('account.payment|stripe_capture_', "Capture Stripe Payments"),
|
||||
('account.payment.stripe.refund|stripe_create',
|
||||
"Create Stripe Refund"),
|
||||
('account.payment.stripe.customer|stripe_create',
|
||||
"Create Stripe Customer"),
|
||||
('account.payment.stripe.customer|stripe_intent_update',
|
||||
"Update Stripe Intent Customer"),
|
||||
('account.payment.stripe.customer|stripe_delete',
|
||||
"Delete Stripe Customer"),
|
||||
('account.payment.stripe.account|fetch_events',
|
||||
"Fetch Stripe Events"),
|
||||
])
|
||||
682
modules/account_payment_stripe/locale/bg.po
Executable file
682
modules/account_payment_stripe/locale/bg.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
635
modules/account_payment_stripe/locale/ca.po
Executable file
635
modules/account_payment_stripe/locale/ca.po
Executable file
@@ -0,0 +1,635 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Compte Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Import Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Capturable amb Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Captura Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "Requereix captura Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Capturat amb Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "Identificador càrrec Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "Cobrable amb Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Identificador del procès de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Requerix procès de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Mètode de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Mètode de pagament de Client de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr "Motiu de disputa Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr "Estat disputa Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Codi d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Missatge d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Paràmetre d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Clau idempotent de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Intent de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr "Devolucions"
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr "Últim event"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Clau pública"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Clau secreta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Retard d'intent de configuració"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "Webhook Endpoint"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "Identificador Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "Secret de firma del Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr "Empremta digital"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Clients idèntics"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Tercer"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Identificador del procès de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Requerix procès de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Identificador client Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Codi d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Missatge d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Paràmetre d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Identificador del procès d'intent de pagament de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr "Empremta digital"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr "Origen"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr "Objectiu"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr "Origen"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Import"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr "Aprovat per"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Pagament"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr "Motiu"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Import Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Codi d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Missatge d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Paràmetre d'error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Clau idempotent de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Identificador devolució de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr "Enviat per"
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clients Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Compte Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Client Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Mètode de pagament Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Mètode de pagament de client Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen del client Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen del client Stripe"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr "El retard abans de cancel·lar l'intent de configuració sense èxit."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "La URL que es cridarà des de Stripe."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "El secret de firma de Stripe per al Webhook."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Compte Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Client Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Empremta digital del client de Strip"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Client de Stripe idèntic"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "Separa l'origen del client"
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Devolució de pagament de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Comptes Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clients Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Devolucions stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Procés de pagament de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Pagament"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Procés de pagament de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Procés de pagament de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr "Separa origen"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Tot"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr "Fallada"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr "En procés"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr "Amb èxit"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr "A aprovar"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr "A processar"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr "L'empremta digital ha de ser única per client."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
"Per processar el pagament \"%(payment)s\" heu de definir-hi un client o un "
|
||||
"token de Stripe."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
"No podeu utilitzar el diari de Stripe \"%(journal)s\" per pagar "
|
||||
"\"%(payment)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"Aquesta acció provocarà que la URL anterior deixi de funcionar. Voleu "
|
||||
"continuar?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "Nova URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr "Cerca idèntics"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr "Separa origen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr "Afegeix targeta"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Captura Stripe"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Cobro por stripe"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr "Aprova"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr "Envia"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Comptes Stripe"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clients Stripe"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Devolucions stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr "Targeta de crèdit o dèbit"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Paga"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Registra targeta"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Procés de pagament de Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr "Es necessita autorització"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr "El botó no funciona? Empega això al teu navegador:"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Pagament"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr "Si no heu fet aquesta petició, podeu ignorar aquest correu."
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr "Heu d'autoritzar el pagament"
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicat"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr "Fradulent"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Sol·licitada pel client"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr "Aprovada"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr "Fallat"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr "En procés"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr "Enviat"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr "Amb èxit"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Captura pagaments de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Carrega pagaments de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Crea clients de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Crea devolucions de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Elimina clients de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Obté events de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Actualitza els Intents de client de Stripe"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr "Cobrable:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Captura:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "Identificador càrrec:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "Cobrable:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Client:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr "Intent de pagament:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Métode de pagament:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr "Origen:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr "Token:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Client:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Mètode de pagament:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr "Origen:"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr "Separa"
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
682
modules/account_payment_stripe/locale/cs.po
Executable file
682
modules/account_payment_stripe/locale/cs.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
639
modules/account_payment_stripe/locale/de.po
Executable file
639
modules/account_payment_stripe/locale/de.po
Executable file
@@ -0,0 +1,639 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Konto"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Betrag"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Abrechenbar"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Abrechnung"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "Stripe Abrechnung notwendig"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Abgerechnet"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "Stripe Charge ID"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "Stripe Zahlbar"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout ID"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Stripe Checkout erforderlich"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Kunde"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Stripe Zahlungsart"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Kunde Zahlungsart"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Kunde Ursprung"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Kunde Ursprung"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr "Stripe Rückbelastungsgrund"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr "Stripe Rückbelastungsstatus"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Fehlercode"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Stripe Fehlermeldung"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Stripe Fehlerparameter"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Idempotenz-Schlüssel"
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Stripe Zahlungsabsicht"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr "Erstattungen"
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Stripe Token"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr "Letztes Ereignis"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Publizierbarer Schlüssel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Geheimer Schlüssel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Verzögerung Setupintent"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "Webhook Endpunkt"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "Webhook Identifikator"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "Webhook Geheimer Signaturschlüssel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr "Fingerprints"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Identische Kunden"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Partei"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Stripe Checkout erforderlich"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Kunde ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Fehlercode"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Stripe Fehlermeldung"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Stripe Fehlerparameter"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Setupintent ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Stripe Token"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Kunde"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr "Fingerprint"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr "Target"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Kunde"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Betrag"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr "Genehmigt von"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Währung"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Zahlung"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr "Grund"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Betrag"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Fehlercode"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Stripe Fehlermeldung"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Stripe Fehlerparameter"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Idempotenz-Schlüssel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Refund ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr "Übermittelt von"
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Kunden"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Konto"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Kunde"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Stripe Zahlungsmethode"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Kunde Zahlungsmethode"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Kunde Ursprung"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Kunde Ursprung"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
"Die Verzögerung bevor ein fehlgeschlagener Setupintent annulliert wird."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "Die von Stripe aufzurufende URL."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "Der geheime Signaturschlüssel von Stripe für den Webhook."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Konto"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Kunde"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Kunde Fingerprint"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Kunde Identisch"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "Kunde Ursprung Lösen"
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Stripe Zahlung Erstattung"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Konten"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Kunden"
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Erstattungen"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr "Ursprung lösen"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr "Fehlgeschlagen"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr "In Ausführung"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr "Erfolgreich"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr "Zu Genehmigen"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr "Auszuführen"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr "Der Fingerprint muss für jeden Kunden eindeutig sein."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
"Um Zahlung \"%(payment)s\" ausführen zu können, muss ein Stripe Token oder "
|
||||
"ein Kunde erfasst werden."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
"\"%(payment)s\" kann nicht über das Stripe Journal \"%(journal)s\" bezahlt "
|
||||
"werden."
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"Diese Aktion macht die vorherige URL unbrauchbar. Möchten Sie fortsetzen?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "Neue URL erzeugen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr "Duplikate finden"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr "Ursprung lösen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr "Karte hinzufügen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Abrechnen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr "Übermitteln"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Konten"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Kunden"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Erstattungen"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr "Kredit- oder Debitkarte"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Bezahlen"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Karte registrieren"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr "Autorisierung erforderlich"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
"Wenn der Button nicht funktioniert, kopieren Sie bitte die folgende Zeile in"
|
||||
" die Adresszeile Ihres Browsers:"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
"Ignorieren Sie bitte diese E-Mail, wenn Sie nicht der Urheber dieser Anfrage"
|
||||
" sind."
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr "Die Zahlung muss autorisiert werden"
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr "Betrügerisch"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Vom Kunden angefordert"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr "Genehmigt"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr "Fehlgeschlagen"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr "In Ausführung"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr "Übermittelt"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr "Erfolgreich"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Stripe Zahlungen abrechnen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Stripe Zahlungen reservieren"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Stripe Kunden erstellen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Stripe Erstattung erstellen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Stripe Kunden löschen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Stripe Ereignisse abrufen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Stripe Intent Customer aktualisieren"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr "Abrechenbar:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Abrechnung:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "Charge ID:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "Abrechenbar:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Kunde:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr "Zahlungsabsicht:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Zahlungsart:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr "Source:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr "Token:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Kunde:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Zahlungsart:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr "Source:"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr "Abtrennen"
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
635
modules/account_payment_stripe/locale/es.po
Executable file
635
modules/account_payment_stripe/locale/es.po
Executable file
@@ -0,0 +1,635 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Cuenta Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Importe Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Capturable amb Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Captura Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "Requiere captura Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Capturado con Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "Identificador del cargo Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "Cobrable con Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Identificador del proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Requiero proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Metodo de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Metdo de pago del cliente de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr "Motivo disputa Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr "Estado disputa Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Código de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Mensaje de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parámetro de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Clave de idempotencia de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Inteto de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr "Devoluciones"
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Cuenta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr "Ultimo evento"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Clave pública"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Clave secreta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Retraso de intento de configuración"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "Webhook Endpoint"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "Identificador Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "Secreto de firma del Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr "Huellas digital"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Clientes idénticos"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Tercero"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Cuenta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Identificador del proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Requiere proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Identificador cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Código de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Mensaje de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parámetro de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Identificador del proceso del intento de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr "Huella digital"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr "Origen"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr "Objetivo"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr "Origen"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Importe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr "Aprobado por"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Pago"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr "Motivo"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Importe Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Código de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Mensaje de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parámetro de error de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Clave de idempotencia de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Identificador devolción de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr "Enviado por"
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clientes Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Cuenta Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Método de pago Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Método de pago del cliente Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen del cliente Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origen del cliente Stripe"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr "El retraso antes de cancelar el intento de configuración sin éxito."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "La URL que se va a llamar desde Stripe."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "El secreto de firma de Stripe para el Webhook."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Cuenta Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Huella digital del cliente de Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Cliente de Stripe idéntico"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "Separa el origen del cliente"
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Devolución de pago de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Cuentas Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clientes Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Devoluciones Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Proceso de pago de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Pago"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Proceso de pago de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Proceso de pago de Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr "Separar el origen"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Todo"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr "Fallado"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr "En proceso"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr "Con éxito"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr "A aprobar"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr "A procesar"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr "La huella digital debe ser única por cliente."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
"Para procesar el pago \"%(payment)s\" debe establecer un token de Stripe o "
|
||||
"cliente."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
"No se puede usar el diario de Stripe: \"%(journal)s\" para pagar "
|
||||
"\"%(payment)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"Esta acción provocara que la URL anterior deje de funcionar. ¿Desea "
|
||||
"continuar?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "Nueva URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr "Buscar idénticos"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr "Separa el origen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr "Añade tarjeta"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Capturar Stripe"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Cobro por stripe"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr "Aprobar"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr "Enviar"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Cuentas Stripe"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clientes Stripe"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Devoluciones Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr "Tarjeta de débito o de crédito"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Pagar"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Registrar tarjeta"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Proceso de pago de Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr "Se requiere autorización"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr "¿El botón no funciona? Pega esto en tu navegador:"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Pago"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr "Si no hiciste esta petición puedes ignorar este correo electrónico."
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr "Debéis autorizar el pago"
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicado"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr "Fraudulente"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Solicitada por el cliente"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr "Aprobada"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr "Fallado"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr "En proceso"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr "Enviado"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr "Con éxito"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Captura pagos de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Carga pagos de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Crear clientes de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Crear devoluciones de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Eliminar clientes de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Descargar eventos de Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Actualitzar los intentos de cliente de Stripe"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr "Cobrable:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Captura:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "Identificador cargo:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "Cobrable:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Cliente:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr "Intento de pago:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Método de pago:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr "Origen:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr "Token:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Cliente:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Método de pago:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr "Origen:"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr "Separa"
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
630
modules/account_payment_stripe/locale/es_419.po
Executable file
630
modules/account_payment_stripe/locale/es_419.po
Executable file
@@ -0,0 +1,630 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Se requiere proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Se requiere proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Se requiere proceso de pago de Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
632
modules/account_payment_stripe/locale/et.po
Executable file
632
modules/account_payment_stripe/locale/et.po
Executable file
@@ -0,0 +1,632 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nimetus"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Osapool"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "Uus URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Tasu"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Registreeri"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
678
modules/account_payment_stripe/locale/fa.po
Executable file
678
modules/account_payment_stripe/locale/fa.po
Executable file
@@ -0,0 +1,678 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "حساب چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "مقدار چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "گرفتن چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "گرفتن چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "گرفتن چوب خط مورد نیاز"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "چوب خط گرفته شده"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "شناسه شارژ چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "چوب خط قابل شارژ"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "شناسه وارسی چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "چوب خط مورد نیاز وارسی"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "شناسه چوب خط مشتری"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "منبع چوب خط مشتری"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "منبع چوب خط مشتری"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr "دلیل اختلاف چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr "وضعیت اختلاف چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "کد خطای چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "پیغام خطای چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "پارامتر خطای چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "کلید_هماهنگی چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "نشان چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "حساب"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "کلید قابل انتشار"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "کلید مخفی"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "شناسه وارسی چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "نقطه پایانی Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "شناسه Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "امضاء محرمانه Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "چوب خط مشتریان"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "نهاد/سازمان"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "حساب"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "شناسه وارسی چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "چوب خط مورد نیاز وارسی"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "شناسه چوب خط مشتری"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "کد خطای چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "پیغام خطای چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "پارامتر خطای چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "شناسه وارسی چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "نشان چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "حساب"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "مقدار چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "کد خطای چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "پیغام خطای چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "پارامتر خطای چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "کلید_هماهنگی چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "شناسه وارسی چوب خط"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "چوب خط مشتریان"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "حساب چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "شناسه چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "منبع چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "منبع چوب خط مشتری"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "نشانی اینترنتی که باید توسط چوب خط فراخوانی شود."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "امضاء محرمانه چوب خط ازاین webhook."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "حساب چوب خط"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "شناسه چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "منبع چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "حساب های چوب خط"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "چوب خط مشتریان"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "نشان چوب خط"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "وارسی چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "وارسی چوب خط"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "وارسی چوب خط"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "وارسی چوب خط"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
"برای پردازش پرداخت: \"%(payment)s\" شما باید نشانه چوب خط یا مشتری را تنظیم "
|
||||
"کنید."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "حساب های چوب خط"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "چوب خط مشتریان"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "نشان چوب خط"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "پرداخت"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "ثبت نام"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "وارسی چوب خط"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "وارسی چوب خط"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "چوب خط"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "حذف چوب خط مشتری"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "ایجاد چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "ایجاد چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "حذف چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "ایجاد چوب خط مشتری"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "چوب خط"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "گرفتن چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "شناسه شارژ چوب خط"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "چوب خط قابل شارژ"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "چوب خط"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "چوب خط مشتری"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "شارژ پرداخت های چوب خط"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
682
modules/account_payment_stripe/locale/fi.po
Executable file
682
modules/account_payment_stripe/locale/fi.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
637
modules/account_payment_stripe/locale/fr.po
Executable file
637
modules/account_payment_stripe/locale/fr.po
Executable file
@@ -0,0 +1,637 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Compte Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Montant Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Capturable Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Capture Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "Capture Stripe nécessaire"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capturé"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "ID de la charge Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "Charge Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "ID du check-out Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Check-out Stripe nécessaire"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Méthode de paiement Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Méthode de paiement client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Source client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Source client Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr "Raison de contestation Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr "Statut de contestation Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Code d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Message d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Paramètre d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Clé d'idempotence Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Intention de paiement Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr "Remboursements"
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Jeton Stripe"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr "Dernier événement"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Clé Publiable"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Clé secrète"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Délai d'intention de configuration"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "Point d'arrivée du webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "Identifiant du webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "Secret de signature du webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr "Empreintes"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Clients identiques"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Tiers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "ID du check-out Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Check-out Stripe nécessaire"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "ID du client Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Code d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Message d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Paramètre d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "ID de configuration d'intention"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Jeton Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr "Empreinte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr "Cible"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Montant"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr "Approuvé par"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Devise"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Paiement"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr "Raison"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Montant Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Code d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Message d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Paramètre d'erreur Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Clé d'idempotence Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "ID de remboursement Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr "Soumis par"
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clients Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Compte Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Client Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Méthode de paiement Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Méthode de paiement client Stripe"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Source client Stripe"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Source client Stripe"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
"Le délai avant l'annulation de l'intention de configuration qui n'a pas "
|
||||
"réussie."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "L'URL appelée par Stripe."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "Le secret de signature du webhook de Stripe."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Compte Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Client Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Empreinte du client Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Client Stripe identique"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "Détacher la source client"
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Remboursement de paiement Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Comptes Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clients Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Remboursements Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Paiement Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Check-out"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Paiement Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Paiement Stripe"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr "Détacher la source"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillons"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr "Échoués"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr "En traitement"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr "Réussis"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr "À approuver"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr "À traiter"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr "L'empreinte doit être unique par client."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
"Pour exécuter le paiement « %(payment)s », vous devez définir un jeton ou "
|
||||
"client Stripe."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
"Pour payer « %(payment)s », vous ne pouvez pas utiliser un journal stripe "
|
||||
"« %(journal)s »."
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"Cette action rendra l'URL précédente inutilisable. Voulez-vous continuer ?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "Nouvelle URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr "Trouver les identiques"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr "Détacher la source"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr "Ajouter une carte"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Paiement Stripe"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr "Approuver"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr "Soumettre"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Comptes Stripe"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clients Stripe"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Remboursements Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr "Carte de crédit ou de débit"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Payer"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Enregistrer une carte"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Paiement Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr "Autorisation nécessaire"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr "Le bouton ne fonctionne pas ? Copier ceci dans votre navigateur :"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Check-out"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
"Si vous n'avez pas fait cette demande, vous pouvez ignorer cet e-mail."
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr "Vous devez autoriser le paiement"
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr "Doublon"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr "Frauduleux"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Demandé par le client"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr "Approuvé"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr "Échoué"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr "En traitement"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr "Soumis"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr "Réussi"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Imputer les paiements Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Imputer les paiements Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Création des clients Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Créer les remboursements Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Effacement des clients Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Récupérer les événements Stripe"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Mettre à jour les intentions clientes Stripe"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr "Capturable :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Capture :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "ID de la charge :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "Facturable :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Client :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr "Intention de paiement :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Méthode de paiement :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr "Source :"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr "Jeton :"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Client :"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Méthode de paiement :"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr "Source :"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr "Détacher"
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
682
modules/account_payment_stripe/locale/hu.po
Executable file
682
modules/account_payment_stripe/locale/hu.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
631
modules/account_payment_stripe/locale/id.po
Executable file
631
modules/account_payment_stripe/locale/id.po
Executable file
@@ -0,0 +1,631 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Akun"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Pihak"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Akun"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Pelanggan"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Pelanggan"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Jumlah"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr "Disetujui oleh"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Mata Uang"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Pembayaran"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr "Alasan"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Akun"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "URL Baru"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Bayar"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Daftarkan kartu"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr "Tombol tidak berfungsi? Lekatkan ini pada browser Anda:"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
678
modules/account_payment_stripe/locale/it.po
Executable file
678
modules/account_payment_stripe/locale/it.po
Executable file
@@ -0,0 +1,678 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Controparte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Pagamento"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Cattura:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Cliente:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Metodo di Pagamento:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Cliente:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Metodo di Pagamento:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
682
modules/account_payment_stripe/locale/lo.po
Executable file
682
modules/account_payment_stripe/locale/lo.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
682
modules/account_payment_stripe/locale/lt.po
Executable file
682
modules/account_payment_stripe/locale/lt.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Kontrahentas"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
633
modules/account_payment_stripe/locale/nl.po
Executable file
633
modules/account_payment_stripe/locale/nl.po
Executable file
@@ -0,0 +1,633 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe rekening"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe bedrag"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe opneembaar?(capturable)"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "stripe caputre nodig"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "stripe id rekenen"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "Stripe in rekening gebracht"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe betalings-ID"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Stripe betaling noodzakelijk"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe klant"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Stripe Betaalmethode"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Klantbetalingsmethode"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Klantbron"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Klantbron"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr "Stripe geschillen reden"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr "Stripe geschillen status"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe foutcode"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Stripe foutmelding"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Stripe fout parameters"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stipe idempotency sleutel"
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Stripe betalingsintentie"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr "Terugbetalingen"
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Stripe Token"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Rekening"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr "Laatste gebeurtenis"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Publieke sleutel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Geheime sleutel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Initiatie wachttijd"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "Webhook eindpunt"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "Webhook ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "Geheime handtekening sleutel Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr "Identificaties"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Identieke Klanten"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Relatie"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Rekening"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe betalings-ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Stripe betaling noodzakelijk"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe klant-ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe foutcode"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Stripe foutmelding"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Stripe fout parameters"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe SetupIntent ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Stripe Token"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Klant"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr "Identificatie"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr "Doel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Klant"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr "Goedgekeurd door"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr "Betaling"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr "Reden"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe bedrag"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe foutcode"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Stripe foutmelding"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Stripe fout parameters"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stipe idempotency sleutel"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe terugbetalings-ID"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr "Ingediend door"
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe klanten"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe rekening"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe klant"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Stripe Betaalmethode"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Klantbetalingsmethode"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Klantbron"
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Klantbron"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr "De wachttijd voordat de initiatie wordt geannuleerd."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "De URL die Stripe moet aanroepen."
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "Het Stripe tekengeheim van de webhook."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe rekening"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe klant"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Klant Identificatie"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Identieke Klant"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "Koppel de klantbron los"
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Stripe terugbetaling"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe rekeningen"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe klanten"
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Terugbetalingen"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe afrekenen"
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Uitchecken"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe afrekenen"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe afrekenen"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr "Ontkoppel de bron"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr "mislukt"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr "In behandeling"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr "Geslaagd"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr "Goed te keuren"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr "Te verwerken"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr "De identificatie moet uniek zijn per klant."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
"Om betaling \"%(payment)s\" te verwerken, moet u een Stripe-token of klant "
|
||||
"instellen."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
"Om \"%(payment)s\" te betalen, kunt u geen streepjournaal \"%(journal)s\" "
|
||||
"gebruiken."
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr "Door deze actie wordt de vorige URL onbruikbaar. Wil je doorgaan?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "Nieuwe URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr "Vind identieke"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr "Ontkoppel de bron"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr "Voeg een kaart toe"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe opname"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe afrekenen"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr "Goedkeuren"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr "Indienen"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe rekeningen"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe klanten"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Terugbetalingen"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr "Creditcard of bankpas"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Betalen"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Kaart registreren"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe afrekenen"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr "Autorisatie vereist"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr "Knop werkt niet? Plak dit in uw browser:"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Uitchecken"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr "Als je dit verzoek niet hebt gedaan, kun je deze e-mail negeren."
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr "U moet de betaling autoriseren"
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicaat"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr "Frauduleus"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Gevraagd door klant"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr "Goedgekeurd"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr "mislukt"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr "In behandeling"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr "Ingediend"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr "Geslaagd"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Leg Stripe betalingen vast"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "verreken de Stripe betalingen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Maak een stripe-klant aan"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Maak Stripe terugbetaling"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Stripe-klant verwijderen"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Haal stripe gebeurtenissen op"
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Stripe Intent-klant bijwerken"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr "Afrekenbaar:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Afrekening:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "Charge ID:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "Factureerbaar:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Klant:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr "Betalingsintentie:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Betalingsmethode:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr "Bron:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr "token:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Klant:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Betalingsmethode:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr "Bron:"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr "Ontkoppel"
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
682
modules/account_payment_stripe/locale/pl.po
Executable file
682
modules/account_payment_stripe/locale/pl.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Strona"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Konto"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
683
modules/account_payment_stripe/locale/pt.po
Executable file
683
modules/account_payment_stripe/locale/pt.po
Executable file
@@ -0,0 +1,683 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Conta Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Montante Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Captura Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Captura Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr "Captura Stripe Obrigatória"
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Capturado com Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "ID de Cobrança Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "Cobrável com Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "ID de Checkout Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Checkout Stripe Necessário"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "ID do Cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origem do Cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origem do Consumidor Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Código de Erro Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Mensagem de Erro Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parâmetro de Erro Stripe"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Chave Publicável"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Chave Secreta"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "ID de Checkout Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr "Webhook Endpoint"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr "Identificador Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr "Código de Assinatura do Webhook"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Clientes Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Pessoa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "ID de Checkout Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Checkout Stripe Necessário"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "ID do Cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Código do Erro Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Mensagem de Erro Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parâmetro de Erro Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "ID de Checkout Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Conta"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Montante Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Código de Erro Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Mensagem de Erro Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parâmetro de Erro Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "ID de Checkout Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "ID de Checkout Stripe"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Clientes Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Conta Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "ID do Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origem do Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Origem do Cliente Stripe"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr "A URL a ser chamada por Stripe"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr "O código de assinatura do Stripe para o Webhook."
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Conta Stripe"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "ID do Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr "Origem do Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Token Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Pagar"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Registrar"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Checkout Stripe"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Captura Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "ID de Cobrança Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "Cobrável com Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Cliente Stripe"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
632
modules/account_payment_stripe/locale/ro.po
Executable file
632
modules/account_payment_stripe/locale/ro.po
Executable file
@@ -0,0 +1,632 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Cont"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Parte"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Cont"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Suma"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Cont"
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Ciorna"
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr "Esuat"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr "In Curs de Procesare"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr "Reusit"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr "De Aprobat"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr "De Procesat"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"Această acțiune va face ca adresa URL anterioară să fie inutilizabilă. "
|
||||
"Doriți să continuați?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "URL Nou"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr "Aproba"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Ciorna"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr "Trimite"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Client:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Metoda de Plata:"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Client:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Metoda de Plata:"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
682
modules/account_payment_stripe/locale/ru.po
Executable file
682
modules/account_payment_stripe/locale/ru.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
685
modules/account_payment_stripe/locale/sl.po
Executable file
685
modules/account_payment_stripe/locale/sl.po
Executable file
@@ -0,0 +1,685 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe račun"
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe znesek"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr "ID Stripe plačila"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr "ID Stripe plačila"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "ID Stripe nakupa"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Stripe nakup obvezen"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "ID Stripe stranke"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Šifra Stripe napake"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Vsebina Stripe napake"
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parameter Stripe napake"
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Stripe žeton"
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Račun"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr "Javni ključ"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr "Skriti ključ"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "ID Stripe nakupa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe stranke"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr "Partner"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr "Račun"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "ID Stripe nakupa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr "Stripe nakup obvezen"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "ID Stripe stranke"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Šifra Stripe napake"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Vsebina Stripe napake"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parameter Stripe napake"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "ID Stripe nakupa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr "Stripe žeton"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Račun"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe znesek"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Šifra Stripe napake"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr "Vsebina Stripe napake"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr "Parameter Stripe napake"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "ID Stripe nakupa"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "ID Stripe nakupa"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe stranke"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe račun"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "ID Stripe stranke"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe račun"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "ID Stripe stranke"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe žeton"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe žeton"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr "Plačilo"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr "Registracija"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe nakup"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr "Gumb ne deluje? Prilepite to povezavo v vaš brskalnik:"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr "ID Stripe plačila"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr "ID Stripe plačila"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe stranka"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
682
modules/account_payment_stripe/locale/tr.po
Executable file
682
modules/account_payment_stripe/locale/tr.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
629
modules/account_payment_stripe/locale/uk.po
Executable file
629
modules/account_payment_stripe/locale/uk.po
Executable file
@@ -0,0 +1,629 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
682
modules/account_payment_stripe/locale/zh_CN.po
Executable file
682
modules/account_payment_stripe/locale/zh_CN.po
Executable file
@@ -0,0 +1,682 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capturable:"
|
||||
msgid "Stripe Capturable"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_capture:"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_capture_needed:"
|
||||
msgid "Stripe Capture Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_captured:"
|
||||
msgid "Stripe Captured"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "field:account.payment,stripe_charge_id:"
|
||||
msgid "Stripe Charge ID"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_chargeable:"
|
||||
msgid "Stripe Chargeable"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_reason:"
|
||||
msgid "Stripe Dispute Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_dispute_status:"
|
||||
msgid "Stripe Dispute Status"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment,stripe_payment_intent_id:"
|
||||
msgid "Stripe Payment Intent"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "field:account.payment,stripe_refunds:"
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.journal,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,last_event:"
|
||||
msgid "Last Event"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,publishable_key:"
|
||||
msgid "Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,secret_key:"
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "Setup Intent Delay"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "Webhook Endpoint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_identifier:"
|
||||
msgid "Webhook Identifier"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "Webhook Signing Secret"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,fingerprints:"
|
||||
msgid "Fingerprints"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,identical_customers:"
|
||||
msgid "Identical Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_account:"
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_id:"
|
||||
msgid "Stripe Checkout ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_checkout_needed:"
|
||||
msgid "Stripe Checkout Needed"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_customer_id:"
|
||||
msgid "Stripe Customer ID"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_setup_intent_id:"
|
||||
msgid "Stripe SetupIntent ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer,stripe_token:"
|
||||
msgid "Stripe Token"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.fingerprint,fingerprint:"
|
||||
msgid "Fingerprint"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.identical,target:"
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,customer:"
|
||||
msgid "Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.customer.source.detach.ask,source:"
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,amount:"
|
||||
msgid "Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,approved_by:"
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,currency:"
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,payment:"
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,reason:"
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_amount:"
|
||||
msgid "Stripe Amount"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_code:"
|
||||
msgid "Stripe Error Code"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_message:"
|
||||
msgid "Stripe Error Message"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_error_param:"
|
||||
msgid "Stripe Error Param"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_idempotency_key:"
|
||||
msgid "Stripe Idempotency Key"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.payment.stripe.refund,stripe_refund_id:"
|
||||
msgid "Stripe Refund ID"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "field:account.payment.stripe.refund,submitted_by:"
|
||||
msgid "Submitted by"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,stripe_customers:"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_account:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method:"
|
||||
msgid "Stripe Payment Method"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_payment_method_selection:"
|
||||
msgid "Stripe Customer Payment Method"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.reception_direct_debit,stripe_customer_source:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:party.party.reception_direct_debit,stripe_customer_source_selection:"
|
||||
msgid "Stripe Customer Source"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,setup_intent_delay:"
|
||||
msgid "The delay before cancelling setup intent not succeeded."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_endpoint:"
|
||||
msgid "The URL to be called by Stripe."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.payment.stripe.account,webhook_signing_secret:"
|
||||
msgid "The Stripe's signing secret of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.account,name:"
|
||||
msgid "Stripe Account"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer,name:"
|
||||
msgid "Stripe Customer"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.fingerprint,name:"
|
||||
msgid "Stripe Customer Fingerprint"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.customer.identical,name:"
|
||||
msgid "Stripe Customer Identical"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "model:account.payment.stripe.customer.source.detach.ask,name:"
|
||||
msgid "Detach Customer Source"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.payment.stripe.refund,name:"
|
||||
msgid "Stripe Payment Refund"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "model:ir.action,name:act_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:act_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:act_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.action,name:report_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.action,name:report_email_checkout"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:url_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_checkout"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_customer_source_detach"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action.act_window.domain,name:act_refund_form_domain_failed"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_processing"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_suceeded"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_approve"
|
||||
msgid "To Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_refund_form_domain_to_process"
|
||||
msgid "To Process"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_customer_fingerprint_unique"
|
||||
msgid "The fingerprint must be unique by customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_no_stripe_token"
|
||||
msgid ""
|
||||
"To process payment \"%(payment)s\" you must set a Stripe token or customer."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_stripe_receivable"
|
||||
msgid "To pay \"%(payment)s\", you cannot use a stripe journal \"%(journal)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,confirm:account_new_identifier_button"
|
||||
msgid ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
msgstr ""
|
||||
"This action will make the previous URL unusable. Do you want to continue?"
|
||||
|
||||
msgctxt "model:ir.model.button,string:account_new_identifier_button"
|
||||
msgid "New URL"
|
||||
msgstr "New URL"
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_find_identical_button"
|
||||
msgid "Find Identical"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_source_detach_button"
|
||||
msgid "Detach Source"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:customer_stripe_checkout_button"
|
||||
msgid "Add Card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_capture_button"
|
||||
msgid "Stripe Capture"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "model:ir.model.button,string:payment_stripe_checkout_button"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_approve_button"
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:refund_submit_button"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_account_form"
|
||||
msgid "Stripe Accounts"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_customer_form"
|
||||
msgid "Stripe Customers"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:ir.ui.menu,name:menu_refund_form"
|
||||
msgid "Stripe Refunds"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Credit or debit card"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Register card"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.checkout:"
|
||||
msgid "Stripe Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Authorization needed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Button is not working? Paste this into your browser:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "Checkout"
|
||||
msgstr "Stripe Checkout"
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "If you didn't make this request, you can ignore this email."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "report:account.payment.stripe.email_checkout:"
|
||||
msgid "You need to authorize the payment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.journal,process_method:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Fraudulent"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:account.payment.stripe.refund,reason:"
|
||||
msgid "Requested by Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.payment.stripe.refund,state:"
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Capture Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Charge Stripe Payments"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Create Stripe Refund"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Delete Stripe Customer"
|
||||
msgstr "Delete Stripe Customer"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Fetch Stripe Events"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "selection:ir.cron,method:"
|
||||
msgid "Update Stripe Intent Customer"
|
||||
msgstr "Create Stripe Customer"
|
||||
|
||||
msgctxt "view:account.payment.journal:"
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capturable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Capture:"
|
||||
msgstr "Stripe Capture"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Charge ID:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Chargeable:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Intent:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Payment Method:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Stripe"
|
||||
msgstr "Stripe Accounts"
|
||||
|
||||
msgctxt "view:account.payment:"
|
||||
msgid "Token:"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Customer:"
|
||||
msgstr "Stripe Customers"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Payment Method:"
|
||||
msgstr "Charge Stripe Payments"
|
||||
|
||||
msgctxt "view:party.party.reception_direct_debit:"
|
||||
msgid "Source:"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.payment.stripe.customer.source.detach,ask,detach:"
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.payment.stripe.customer.source.detach,ask,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
16
modules/account_payment_stripe/message.xml
Executable file
16
modules/account_payment_stripe/message.xml
Executable file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data grouped="1">
|
||||
<record model="ir.message" id="msg_no_stripe_token">
|
||||
<field name="text">To process payment "%(payment)s" you must set a Stripe token or customer.</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_stripe_receivable">
|
||||
<field name="text">To pay "%(payment)s", you cannot use a stripe journal "%(journal)s".</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_customer_fingerprint_unique">
|
||||
<field name="text">The fingerprint must be unique by customer.</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
66
modules/account_payment_stripe/party.py
Executable file
66
modules/account_payment_stripe/party.py
Executable file
@@ -0,0 +1,66 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
from trytond.model import fields
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
from .common import StripeCustomerMethodMixin
|
||||
|
||||
|
||||
class Party(metaclass=PoolMeta):
|
||||
__name__ = 'party.party'
|
||||
|
||||
stripe_customers = fields.One2Many(
|
||||
'account.payment.stripe.customer', 'party', "Stripe Customers")
|
||||
|
||||
def _payment_identical_parties(self):
|
||||
parties = super()._payment_identical_parties()
|
||||
for customer in self.stripe_customers:
|
||||
for other_customer in customer.identical_customers:
|
||||
parties.add(other_customer.party)
|
||||
return parties
|
||||
|
||||
@classmethod
|
||||
def write(cls, *args):
|
||||
pool = Pool()
|
||||
Customer = pool.get('account.payment.stripe.customer')
|
||||
transaction = Transaction()
|
||||
context = transaction.context
|
||||
|
||||
parties = sum(args[0:None:2], [])
|
||||
customers = sum((p.stripe_customers for p in parties), ())
|
||||
customer2params = {c: c._customer_parameters() for c in customers}
|
||||
|
||||
super().write(*args)
|
||||
|
||||
to_update = []
|
||||
for customer, params in customer2params.items():
|
||||
if customer._customer_parameters() != params:
|
||||
to_update.append(customer)
|
||||
if to_update:
|
||||
with transaction.set_context(
|
||||
queue_batch=context.get('queue_batch', True)):
|
||||
Customer.__queue__.stripe_update(to_update)
|
||||
|
||||
|
||||
class PartyReceptionDirectDebit(
|
||||
StripeCustomerMethodMixin, metaclass=PoolMeta):
|
||||
__name__ = 'party.party.reception_direct_debit'
|
||||
|
||||
def _get_payment(self, line, date, amount):
|
||||
payment = super()._get_payment(line, date, amount)
|
||||
self.stripe_customer = self.stripe_customer
|
||||
self.stripe_customer_source = self.stripe_customer_source
|
||||
self.stripe_customer_payment_method = (
|
||||
self.stripe_customer_payment_method)
|
||||
return payment
|
||||
|
||||
|
||||
class Replace(metaclass=PoolMeta):
|
||||
__name__ = 'party.replace'
|
||||
|
||||
@classmethod
|
||||
def fields_to_replace(cls):
|
||||
return super().fields_to_replace() + [
|
||||
('account.payment.stripe.customer', 'party'),
|
||||
]
|
||||
12
modules/account_payment_stripe/party.xml
Executable file
12
modules/account_payment_stripe/party.xml
Executable file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="party_reception_direct_debit_view_form">
|
||||
<field name="model">party.party.reception_direct_debit</field>
|
||||
<field name="inherit" ref="account_payment.party_reception_direct_debit_view_form"/>
|
||||
<field name="name">party_reception_direct_debit_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
1927
modules/account_payment_stripe/payment.py
Executable file
1927
modules/account_payment_stripe/payment.py
Executable file
File diff suppressed because it is too large
Load Diff
362
modules/account_payment_stripe/payment.xml
Executable file
362
modules/account_payment_stripe/payment.xml
Executable file
@@ -0,0 +1,362 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="payment_journal_view_form">
|
||||
<field name="model">account.payment.journal</field>
|
||||
<field name="inherit" ref="account_payment.payment_journal_view_form"/>
|
||||
<field name="name">payment_journal_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="payment_view_form">
|
||||
<field name="model">account.payment</field>
|
||||
<field name="inherit" ref="account_payment.payment_view_form"/>
|
||||
<field name="name">payment_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="payment_view_list">
|
||||
<field name="model">account.payment</field>
|
||||
<field name="inherit" ref="account_payment.payment_view_list"/>
|
||||
<field name="name">payment_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="refund_view_form">
|
||||
<field name="model">account.payment.stripe.refund</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">refund_form</field>
|
||||
</record>
|
||||
<record model="ir.ui.view" id="refund_view_list">
|
||||
<field name="model">account.payment.stripe.refund</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">refund_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window" id="act_refund_form">
|
||||
<field name="name">Stripe Refunds</field>
|
||||
<field name="res_model">account.payment.stripe.refund</field>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_refund_form_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="refund_view_list"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_refund_form_view2">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="refund_view_form"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_draft">
|
||||
<field name="name">Draft</field>
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="domain" eval="[('state', '=', 'draft')]" pyson="1"/>
|
||||
<field name="count" eval="True"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_to_approve">
|
||||
<field name="name">To Approve</field>
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="domain" eval="[('state', '=', 'submitted')]" pyson="1"/>
|
||||
<field name="count" eval="True"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_to_process">
|
||||
<field name="name">To Process</field>
|
||||
<field name="sequence" eval="30"/>
|
||||
<field name="domain" eval="[('state', '=', 'approved')]" pyson="1"/>
|
||||
<field name="count" eval="True"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_processing">
|
||||
<field name="name">Processing</field>
|
||||
<field name="sequence" eval="40"/>
|
||||
<field name="domain" eval="[('state', '=', 'processing')]" pyson="1"/>
|
||||
<field name="count" eval="True"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_suceeded">
|
||||
<field name="name">Succeeded</field>
|
||||
<field name="sequence" eval="50"/>
|
||||
<field name="domain" eval="[('state', '=', 'succeeded')]" pyson="1"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_failed">
|
||||
<field name="name">Failed</field>
|
||||
<field name="sequence" eval="60"/>
|
||||
<field name="domain" eval="[('state', '=', 'failed')]" pyson="1"/>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_refund_form_domain_all">
|
||||
<field name="name">All</field>
|
||||
<field name="sequence" eval="9999"/>
|
||||
<field name="domain"></field>
|
||||
<field name="act_window" ref="act_refund_form"/>
|
||||
</record>
|
||||
|
||||
<menuitem
|
||||
parent="account_payment.menu_payments"
|
||||
sequence="20"
|
||||
action="act_refund_form"
|
||||
id="menu_refund_form"/>
|
||||
|
||||
<record model="ir.model.button" id="refund_draft_button">
|
||||
<field name="model">account.payment.stripe.refund</field>
|
||||
<field name="name">draft</field>
|
||||
<field name="string">Draft</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="refund_submit_button">
|
||||
<field name="model">account.payment.stripe.refund</field>
|
||||
<field name="name">submit</field>
|
||||
<field name="string">Submit</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="refund_approve_button">
|
||||
<field name="model">account.payment.stripe.refund</field>
|
||||
<field name="name">approve</field>
|
||||
<field name="string">Approve</field>
|
||||
</record>
|
||||
<record model="ir.model.button-res.group" id="refund_approve_button_group_payment_approval">
|
||||
<field name="button" ref="refund_approve_button"/>
|
||||
<field name="group" ref="account_payment.group_payment_approval"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="account_view_form">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">account_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="account_view_list">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">account_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="account_new_identifier_button">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="name">new_identifier</field>
|
||||
<field name="string">New URL</field>
|
||||
<field name="confirm">This action will make the previous URL unusable. Do you want to continue?</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window" id="act_account_form">
|
||||
<field name="name">Stripe Accounts</field>
|
||||
<field name="res_model">account.payment.stripe.account</field>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_account_form_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="account_view_list"/>
|
||||
<field name="act_window" ref="act_account_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_account_form_view2">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="account_view_form"/>
|
||||
<field name="act_window" ref="act_account_form"/>
|
||||
</record>
|
||||
<menuitem
|
||||
parent="account_payment.menu_payment_configuration"
|
||||
action="act_account_form"
|
||||
sequence="20"
|
||||
id="menu_account_form"/>
|
||||
|
||||
<record model="ir.model.access" id="access_account">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="perm_read" eval="False"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.access" id="access_account_account_admin">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="group" ref="account.group_account_admin"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
<field name="perm_delete" eval="True"/>
|
||||
</record>
|
||||
<record model="ir.model.access" id="access_account_payment">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="group" ref="account_payment.group_payment"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="access_account_secret_key">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="field">secret_key</field>
|
||||
<field name="perm_read" eval="False"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="access_account_secret_key_account_admin">
|
||||
<field name="model">account.payment.stripe.account</field>
|
||||
<field name="field">secret_key</field>
|
||||
<field name="group" ref="account.group_account_admin"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
<field name="perm_delete" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="payment_stripe_checkout_button">
|
||||
<field name="model">account.payment</field>
|
||||
<field name="name">stripe_checkout</field>
|
||||
<field name="string">Stripe Checkout</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="payment_stripe_capture_button">
|
||||
<field name="model">account.payment</field>
|
||||
<field name="name">stripe_do_capture</field>
|
||||
<field name="string">Stripe Capture</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="customer_view_form">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">customer_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="customer_view_list">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">customer_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window" id="act_customer_form">
|
||||
<field name="name">Stripe Customers</field>
|
||||
<field name="res_model">account.payment.stripe.customer</field>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_customer_form_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="customer_view_list"/>
|
||||
<field name="act_window" ref="act_customer_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_customer_form_view2">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="customer_view_form"/>
|
||||
<field name="act_window" ref="act_customer_form"/>
|
||||
</record>
|
||||
<menuitem
|
||||
parent="account_payment.menu_payments"
|
||||
action="act_customer_form"
|
||||
sequence="50"
|
||||
id="menu_customer_form"/>
|
||||
|
||||
<record model="ir.model.access" id="access_customer">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="perm_read" eval="False"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.access" id="access_customer_payment">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="group" ref="account_payment.group_payment"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
<field name="perm_delete" eval="True"/>
|
||||
</record>
|
||||
<record model="ir.model.button" id="customer_stripe_checkout_button">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="name">stripe_checkout</field>
|
||||
<field name="string">Add Card</field>
|
||||
</record>
|
||||
<record model="ir.model.button" id="customer_source_detach_button">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="name">detach_source</field>
|
||||
<field name="string">Detach Source</field>
|
||||
</record>
|
||||
<record model="ir.model.button" id="customer_find_identical_button">
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
<field name="name">find_identical</field>
|
||||
<field name="string">Find Identical</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.wizard" id="wizard_checkout">
|
||||
<field name="name">Stripe Checkout</field>
|
||||
<field name="wiz_name">account.payment.stripe.checkout</field>
|
||||
<field name="model" eval="None"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.report" id="report_checkout">
|
||||
<field name="name">Stripe Checkout</field>
|
||||
<field name="model" eval="None"/>
|
||||
<field name="report_name">account.payment.stripe.checkout</field>
|
||||
<field name="report">account_payment_stripe/checkout.html</field>
|
||||
<field name="template_extension">html</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.report" id="report_email_checkout">
|
||||
<field name="name">Checkout</field>
|
||||
<field name="model">account.payment</field>
|
||||
<field name="report_name">account.payment.stripe.email_checkout</field>
|
||||
<field name="report">account_payment_stripe/email_checkout.html</field>
|
||||
<field name="template_extension">html</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.wizard" id="wizard_customer_source_detach">
|
||||
<field name="name">Detach Source</field>
|
||||
<field name="wiz_name">account.payment.stripe.customer.source.detach</field>
|
||||
<field name="model">account.payment.stripe.customer</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="customer_source_detach_ask_view_form">
|
||||
<field name="model">account.payment.stripe.customer.source.detach.ask</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">customer_source_detach_ask_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_charge">
|
||||
<field name="method">account.payment|stripe_charge</field>
|
||||
<field name="interval_number" eval="15"/>
|
||||
<field name="interval_type">minutes</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_capture">
|
||||
<field name="method">account.payment|stripe_capture_</field>
|
||||
<field name="interval_number" eval="15"/>
|
||||
<field name="interval_type">minutes</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_refund">
|
||||
<field name="method">account.payment.stripe.refund|stripe_create</field>
|
||||
<field name="interval_number" eval="15"/>
|
||||
<field name="interval_type">minutes</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_create_customer">
|
||||
<field name="method">account.payment.stripe.customer|stripe_create</field>
|
||||
<field name="interval_number" eval="1"/>
|
||||
<field name="interval_type">hours</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_update_customer">
|
||||
<field name="method">account.payment.stripe.customer|stripe_intent_update</field>
|
||||
<field name="interval_number" eval="15"/>
|
||||
<field name="interval_type">minutes</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_delete_customer">
|
||||
<field name="method">account.payment.stripe.customer|stripe_delete</field>
|
||||
<field name="interval_number" eval="1"/>
|
||||
<field name="interval_type">hours</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.cron" id="cron_fetch_events">
|
||||
<field name="method">account.payment.stripe.account|fetch_events</field>
|
||||
<field name="interval_number" eval="15"/>
|
||||
<field name="interval_type">minutes</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.url" id="url_checkout">
|
||||
<field name="name">Stripe Checkout</field>
|
||||
<field name="url">%(http_host)s/%(database)s/account_payment_stripe/checkout/%(model)s/%(id)s</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
83
modules/account_payment_stripe/routes.py
Executable file
83
modules/account_payment_stripe/routes.py
Executable file
@@ -0,0 +1,83 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
import http.client
|
||||
import json
|
||||
import logging
|
||||
|
||||
import stripe
|
||||
|
||||
from trytond.protocols.wrappers import (
|
||||
Response, abort, with_pool, with_transaction)
|
||||
from trytond.wsgi import app
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@app.route(
|
||||
'/<database_name>/account_payment_stripe/checkout/<model>/<id>',
|
||||
methods=['GET', 'POST'])
|
||||
@with_pool
|
||||
@with_transaction(context={'_skip_warnings': True})
|
||||
def checkout(request, pool, model, id):
|
||||
Payment = pool.get('account.payment')
|
||||
Customer = pool.get('account.payment.stripe.customer')
|
||||
if model == Payment.__name__:
|
||||
Model = Payment
|
||||
elif model == Customer.__name__:
|
||||
Model = Customer
|
||||
else:
|
||||
abort(403)
|
||||
try:
|
||||
record, = Model.search([
|
||||
('stripe_checkout_id', '=', id),
|
||||
])
|
||||
except ValueError:
|
||||
abort(403)
|
||||
if request.method == 'GET':
|
||||
Report = pool.get('account.payment.stripe.checkout', type='report')
|
||||
# TODO language
|
||||
data = {
|
||||
'model': Model.__name__,
|
||||
}
|
||||
if model == Payment.__name__ and record.stripe_customer_payment_method:
|
||||
data['payment_method'] = record.stripe_customer_payment_method
|
||||
ext, content, _, _ = Report.execute([record.id], data)
|
||||
assert ext == 'html'
|
||||
return Response(content, 200, content_type='text/html')
|
||||
elif request.method == 'POST':
|
||||
record.stripe_intent_update()
|
||||
return Response(
|
||||
'<body onload="window.close()">', 200, content_type='text/html')
|
||||
|
||||
|
||||
@app.route(
|
||||
'/<database_name>/account_payment_stripe/webhook/<account>',
|
||||
methods={'POST'})
|
||||
@with_pool
|
||||
@with_transaction(context={'_skip_warnings': True})
|
||||
def webhooks_endpoint(request, pool, account):
|
||||
Account = pool.get('account.payment.stripe.account')
|
||||
account, = Account.search([
|
||||
('webhook_identifier', '=', account),
|
||||
])
|
||||
|
||||
if account.webhook_signing_secret:
|
||||
sig_header = request.headers['STRIPE_SIGNATURE']
|
||||
request_body = request.get_data(as_text=True)
|
||||
try:
|
||||
stripe.Webhook.construct_event(
|
||||
request_body, sig_header, account.webhook_signing_secret)
|
||||
except ValueError: # Invalid payload
|
||||
abort(http.client.BAD_REQUEST)
|
||||
except stripe.error.SignatureVerificationError:
|
||||
abort(http.client.BAD_REQUEST)
|
||||
else:
|
||||
logger.warn("Stripe signature ignored")
|
||||
|
||||
payload = json.loads(request_body)
|
||||
result = account.webhook(payload)
|
||||
if result is None:
|
||||
logger.info("No callback for payload type '%s'", payload['type'])
|
||||
elif not result:
|
||||
return Response(status=http.client.NOT_FOUND)
|
||||
return Response(status=http.client.NO_CONTENT)
|
||||
2
modules/account_payment_stripe/tests/__init__.py
Executable file
2
modules/account_payment_stripe/tests/__init__.py
Executable file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
BIN
modules/account_payment_stripe/tests/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_payment_stripe/tests/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_payment_stripe/tests/__pycache__/__init__.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/tests/__pycache__/__init__.cpython-311.pyc
Executable file
Binary file not shown.
Binary file not shown.
BIN
modules/account_payment_stripe/tests/__pycache__/test_module.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/tests/__pycache__/test_module.cpython-311.pyc
Executable file
Binary file not shown.
Binary file not shown.
BIN
modules/account_payment_stripe/tests/__pycache__/test_scenario.cpython-311.pyc
Executable file
BIN
modules/account_payment_stripe/tests/__pycache__/test_scenario.cpython-311.pyc
Executable file
Binary file not shown.
386
modules/account_payment_stripe/tests/scenario_account_payment_stripe.rst
Executable file
386
modules/account_payment_stripe/tests/scenario_account_payment_stripe.rst
Executable file
@@ -0,0 +1,386 @@
|
||||
===============================
|
||||
Account Payment Stripe Scenario
|
||||
===============================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> import os
|
||||
>>> import time
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> import stripe
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, create_fiscalyear
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
>>> FETCH_SLEEP, MAX_SLEEP = 1, 100
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('account_payment_stripe')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> Company = Model.get('company.company')
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = create_fiscalyear(company, today)
|
||||
>>> fiscalyear.click('create_period')
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> _ = create_chart(company)
|
||||
|
||||
Create Stripe account::
|
||||
|
||||
>>> StripeAccount = Model.get('account.payment.stripe.account')
|
||||
>>> stripe_account = StripeAccount(name="Stripe")
|
||||
>>> stripe_account.secret_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
>>> stripe_account.publishable_key = os.getenv('STRIPE_PUBLISHABLE_KEY')
|
||||
>>> stripe_account.save()
|
||||
>>> stripe.api_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
|
||||
Create webhook identifier::
|
||||
|
||||
>>> stripe_account.click('new_identifier')
|
||||
>>> len(stripe_account.webhook_identifier)
|
||||
32
|
||||
|
||||
Remove webhook::
|
||||
|
||||
>>> stripe_account.click('new_identifier')
|
||||
>>> stripe_account.webhook_identifier
|
||||
|
||||
Setup fetch events cron::
|
||||
|
||||
>>> Cron = Model.get('ir.cron')
|
||||
>>> cron_fetch_events, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.account|fetch_events'),
|
||||
... ])
|
||||
>>> cron_fetch_events.companies.append(Company(company.id))
|
||||
|
||||
Create payment journal::
|
||||
|
||||
>>> PaymentJournal = Model.get('account.payment.journal')
|
||||
>>> payment_journal = PaymentJournal(name="Stripe",
|
||||
... process_method='stripe', stripe_account=stripe_account)
|
||||
>>> payment_journal.save()
|
||||
|
||||
Create party::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> Lang = Model.get('ir.lang')
|
||||
>>> customer = Party(name='Customer')
|
||||
>>> customer.lang, = Lang.find([('code', '=', 'en')])
|
||||
>>> customer.save()
|
||||
|
||||
Create submitted payment::
|
||||
|
||||
>>> Payment = Model.get('account.payment')
|
||||
>>> payment = Payment()
|
||||
>>> payment.journal = payment_journal
|
||||
>>> payment.kind = 'receivable'
|
||||
>>> payment.party = customer
|
||||
>>> payment.amount = Decimal('42')
|
||||
>>> payment.description = 'Testing'
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
Checkout the payment::
|
||||
|
||||
>>> checkout = payment.click('stripe_checkout')
|
||||
>>> bool(payment.stripe_checkout_id)
|
||||
True
|
||||
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4242424242424242',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Payment.write([payment.id], {
|
||||
... 'stripe_token': token.id,
|
||||
... 'stripe_chargeable': True,
|
||||
... 'stripe_payment_intent_id': None, # Remove intent from checkout
|
||||
... }, config.context)
|
||||
|
||||
Process the payment::
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> bool(payment.stripe_captured)
|
||||
True
|
||||
|
||||
Create failing payment::
|
||||
|
||||
>>> previous_idempotency_key = payment.stripe_idempotency_key
|
||||
>>> payment, = payment.duplicate()
|
||||
>>> payment.stripe_idempotency_key != previous_idempotency_key
|
||||
True
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
>>> checkout = payment.click('stripe_checkout')
|
||||
>>> bool(payment.stripe_checkout_id)
|
||||
True
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4000000000000002',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Payment.write([payment.id], {
|
||||
... 'stripe_token': token.id,
|
||||
... 'stripe_chargeable': True,
|
||||
... 'stripe_payment_intent_id': None, # Remove intent from checkout
|
||||
... }, config.context)
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'failed'
|
||||
>>> payment.stripe_error_code
|
||||
'card_declined'
|
||||
|
||||
Create a customer::
|
||||
|
||||
>>> Customer = Model.get('account.payment.stripe.customer')
|
||||
>>> stripe_customer = Customer()
|
||||
>>> stripe_customer.party = customer
|
||||
>>> stripe_customer.stripe_account = stripe_account
|
||||
|
||||
Checkout the customer::
|
||||
|
||||
>>> checkout = stripe_customer.click('stripe_checkout')
|
||||
>>> bool(stripe_customer.stripe_checkout_id)
|
||||
True
|
||||
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4012888888881881',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Customer.write(
|
||||
... [stripe_customer.id], {'stripe_token': token.id}, config.context)
|
||||
|
||||
Run cron::
|
||||
|
||||
>>> cron_customer_create, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.customer|stripe_create'),
|
||||
... ])
|
||||
>>> cron_customer_create.companies.append(Company(company.id))
|
||||
>>> cron_customer_create.click('run_once')
|
||||
|
||||
>>> stripe_customer.reload()
|
||||
>>> bool(stripe_customer.stripe_customer_id)
|
||||
True
|
||||
|
||||
Update customer::
|
||||
|
||||
>>> contact = customer.contact_mechanisms.new()
|
||||
>>> contact.type = 'email'
|
||||
>>> contact.value = 'customer@example.com'
|
||||
>>> customer.save()
|
||||
|
||||
>>> cus = stripe.Customer.retrieve(stripe_customer.stripe_customer_id)
|
||||
>>> cus.email
|
||||
'customer@example.com'
|
||||
>>> cus.preferred_locales
|
||||
['en']
|
||||
|
||||
Make payment with customer::
|
||||
|
||||
>>> payment, = payment.duplicate()
|
||||
>>> payment.stripe_customer = stripe_customer
|
||||
>>> payment.save()
|
||||
>>> _, source = Payment.get_stripe_customer_sources(payment.id, config.context)
|
||||
>>> source_id, source_name = source
|
||||
>>> source_name
|
||||
'Visa ****1881 12/...'
|
||||
>>> payment.stripe_customer_source = source_id
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
|
||||
Detach source::
|
||||
|
||||
>>> detach = stripe_customer.click('detach_source')
|
||||
>>> detach.form.source = source_id
|
||||
>>> detach.execute('detach')
|
||||
|
||||
>>> cus = stripe.Customer.retrieve(
|
||||
... stripe_customer.stripe_customer_id, expand=['sources'])
|
||||
>>> len(cus.sources)
|
||||
0
|
||||
>>> len(stripe.PaymentMethod.list(customer=cus.id, type='card'))
|
||||
0
|
||||
|
||||
Delete customer::
|
||||
|
||||
>>> stripe_customer.delete()
|
||||
>>> bool(stripe_customer.active)
|
||||
False
|
||||
|
||||
Run cron::
|
||||
|
||||
>>> cron_customer_delete, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.customer|stripe_delete'),
|
||||
... ])
|
||||
>>> cron_customer_delete.companies.append(Company(company.id))
|
||||
>>> cron_customer_delete.click('run_once')
|
||||
|
||||
>>> stripe_customer.reload()
|
||||
>>> stripe_customer.stripe_token
|
||||
>>> stripe_customer.stripe_customer_id
|
||||
|
||||
Create capture payment::
|
||||
|
||||
>>> payment, = payment.duplicate()
|
||||
>>> payment.stripe_capture = False
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
Checkout the capture payment::
|
||||
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4242424242424242',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Payment.write([payment.id], {
|
||||
... 'stripe_token': token.id,
|
||||
... }, config.context)
|
||||
|
||||
Process the capture payment::
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
>>> bool(payment.stripe_captured)
|
||||
False
|
||||
|
||||
Capture lower amount::
|
||||
|
||||
>>> payment.amount = Decimal('40')
|
||||
>>> payment.click('stripe_do_capture')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> bool(payment.stripe_captured)
|
||||
True
|
||||
|
||||
Refund some amount::
|
||||
|
||||
>>> Refund = Model.get('account.payment.stripe.refund')
|
||||
>>> refund = Refund()
|
||||
>>> refund.payment = payment
|
||||
>>> refund.amount = Decimal('38')
|
||||
>>> refund.click('submit')
|
||||
>>> refund.click('approve')
|
||||
>>> cron_refund_create, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.refund|stripe_create'),
|
||||
... ])
|
||||
>>> cron_refund_create.click('run_once')
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.amount == Decimal('2.00'):
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.amount
|
||||
Decimal('2.00')
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> refund.reload()
|
||||
>>> refund.state
|
||||
'succeeded'
|
||||
|
||||
Simulate charge.refunded event with full amount::
|
||||
|
||||
>>> refund = Refund()
|
||||
>>> refund.payment = payment
|
||||
>>> refund.amount = Decimal('2')
|
||||
>>> refund.click('submit')
|
||||
>>> refund.click('approve')
|
||||
>>> cron_refund_create.click('run_once')
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.amount == Decimal('0.00'):
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.amount
|
||||
Decimal('0.00')
|
||||
>>> payment.state
|
||||
'failed'
|
||||
>>> refund.reload()
|
||||
>>> refund.state
|
||||
'succeeded'
|
||||
|
||||
Try to refund more::
|
||||
|
||||
>>> refund = Refund()
|
||||
>>> refund.payment = payment
|
||||
>>> refund.amount = Decimal('10')
|
||||
>>> refund.click('submit')
|
||||
>>> refund.click('approve')
|
||||
>>> cron_refund_create.click('run_once')
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... refund.reload()
|
||||
... if refund.state == 'failed':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> refund.state
|
||||
'failed'
|
||||
303
modules/account_payment_stripe/tests/scenario_account_payment_stripe_dispute.rst
Executable file
303
modules/account_payment_stripe/tests/scenario_account_payment_stripe_dispute.rst
Executable file
@@ -0,0 +1,303 @@
|
||||
=======================================
|
||||
Account Payment Stripe Dispute Scenario
|
||||
=======================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> import os
|
||||
>>> import time
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> import stripe
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, create_fiscalyear
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
>>> FETCH_SLEEP, MAX_SLEEP = 1, 100
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('account_payment_stripe')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> Company = Model.get('company.company')
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = create_fiscalyear(company, today)
|
||||
>>> fiscalyear.click('create_period')
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> _ = create_chart(company)
|
||||
|
||||
Create Stripe account::
|
||||
|
||||
>>> StripeAccount = Model.get('account.payment.stripe.account')
|
||||
>>> stripe_account = StripeAccount(name="Stripe")
|
||||
>>> stripe_account.secret_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
>>> stripe_account.publishable_key = os.getenv('STRIPE_PUBLISHABLE_KEY')
|
||||
>>> stripe_account.save()
|
||||
>>> stripe.api_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
|
||||
Setup fetch events cron::
|
||||
|
||||
>>> Cron = Model.get('ir.cron')
|
||||
>>> cron_fetch_events, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.account|fetch_events'),
|
||||
... ])
|
||||
>>> cron_fetch_events.companies.append(Company(company.id))
|
||||
|
||||
Create payment journal::
|
||||
|
||||
>>> PaymentJournal = Model.get('account.payment.journal')
|
||||
>>> payment_journal = PaymentJournal(name="Stripe",
|
||||
... process_method='stripe', stripe_account=stripe_account)
|
||||
>>> payment_journal.save()
|
||||
|
||||
Create party::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> customer = Party(name='Customer')
|
||||
>>> customer.save()
|
||||
|
||||
Create fully disputed payment::
|
||||
|
||||
>>> Payment = Model.get('account.payment')
|
||||
>>> payment = Payment()
|
||||
>>> payment.journal = payment_journal
|
||||
>>> payment.kind = 'receivable'
|
||||
>>> payment.party = customer
|
||||
>>> payment.amount = Decimal('42')
|
||||
>>> payment.description = 'Testing'
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
>>> checkout = payment.click('stripe_checkout')
|
||||
>>> bool(payment.stripe_checkout_id)
|
||||
True
|
||||
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4000000000000259',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Payment.write([payment.id], {
|
||||
... 'stripe_token': token.id,
|
||||
... 'stripe_chargeable': True,
|
||||
... 'stripe_payment_intent_id': None, # Remove intent from checkout
|
||||
... }, config.context)
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> bool(payment.stripe_captured)
|
||||
True
|
||||
|
||||
Simulate charge.dispute.created event::
|
||||
|
||||
>>> StripeAccount.webhook([stripe_account], {
|
||||
... 'type': 'charge.dispute.created',
|
||||
... 'data': {
|
||||
... 'object': {
|
||||
... 'object': 'dispute',
|
||||
... 'charge': payment.stripe_charge_id,
|
||||
... 'amount': 4200,
|
||||
... 'currency': 'usd',
|
||||
... 'reason': 'customer_initiated',
|
||||
... 'status': 'needs_response',
|
||||
... },
|
||||
... },
|
||||
... }, {})
|
||||
[True]
|
||||
>>> payment.reload()
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> payment.stripe_dispute_reason
|
||||
'customer_initiated'
|
||||
>>> payment.stripe_dispute_status
|
||||
'needs_response'
|
||||
|
||||
Simulate charge.dispute.closed event::
|
||||
|
||||
>>> StripeAccount.webhook([stripe_account], {
|
||||
... 'type': 'charge.dispute.closed',
|
||||
... 'data': {
|
||||
... 'object': {
|
||||
... 'object': 'dispute',
|
||||
... 'charge': payment.stripe_charge_id,
|
||||
... 'amount': 4200,
|
||||
... 'currency': 'usd',
|
||||
... 'reason': 'customer_initiated',
|
||||
... 'status': 'lost',
|
||||
... },
|
||||
... },
|
||||
... }, {})
|
||||
[True]
|
||||
>>> payment.reload()
|
||||
>>> payment.state
|
||||
'failed'
|
||||
>>> payment.stripe_dispute_reason
|
||||
'customer_initiated'
|
||||
>>> payment.stripe_dispute_status
|
||||
'lost'
|
||||
|
||||
Create partial disputed payment::
|
||||
|
||||
>>> Payment = Model.get('account.payment')
|
||||
>>> payment = Payment()
|
||||
>>> payment.journal = payment_journal
|
||||
>>> payment.kind = 'receivable'
|
||||
>>> payment.party = customer
|
||||
>>> payment.amount = Decimal('42')
|
||||
>>> payment.description = 'Testing'
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
>>> checkout = payment.click('stripe_checkout')
|
||||
>>> bool(payment.stripe_checkout_id)
|
||||
True
|
||||
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4000000000000259',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Payment.write([payment.id], {
|
||||
... 'stripe_token': token.id,
|
||||
... 'stripe_chargeable': True,
|
||||
... 'stripe_payment_intent_id': None, # Remove intent from checkout
|
||||
... }, config.context)
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> bool(payment.stripe_captured)
|
||||
True
|
||||
|
||||
Simulate charge.dispute.closed event::
|
||||
|
||||
>>> StripeAccount.webhook([stripe_account], {
|
||||
... 'type': 'charge.dispute.closed',
|
||||
... 'data': {
|
||||
... 'object': {
|
||||
... 'object': 'dispute',
|
||||
... 'charge': payment.stripe_charge_id,
|
||||
... 'amount': 1200,
|
||||
... 'currency': 'usd',
|
||||
... 'reason': 'general',
|
||||
... 'status': 'lost',
|
||||
... },
|
||||
... },
|
||||
... }, {})
|
||||
[True]
|
||||
>>> payment.reload()
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> payment.amount
|
||||
Decimal('30.00')
|
||||
>>> payment.stripe_dispute_reason
|
||||
'general'
|
||||
>>> payment.stripe_dispute_status
|
||||
'lost'
|
||||
|
||||
Create won disputed payment::
|
||||
|
||||
>>> Payment = Model.get('account.payment')
|
||||
>>> payment = Payment()
|
||||
>>> payment.journal = payment_journal
|
||||
>>> payment.kind = 'receivable'
|
||||
>>> payment.party = customer
|
||||
>>> payment.amount = Decimal('42')
|
||||
>>> payment.description = 'Testing'
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
>>> checkout = payment.click('stripe_checkout')
|
||||
>>> bool(payment.stripe_checkout_id)
|
||||
True
|
||||
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4000000000000259',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> Payment.write([payment.id], {
|
||||
... 'stripe_token': token.id,
|
||||
... 'stripe_chargeable': True,
|
||||
... 'stripe_payment_intent_id': None, # Remove intent from checkout
|
||||
... }, config.context)
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> bool(payment.stripe_captured)
|
||||
True
|
||||
|
||||
Simulate charge.dispute.closed event::
|
||||
|
||||
>>> charge = stripe.Charge.retrieve(payment.stripe_charge_id)
|
||||
>>> dispute = stripe.Dispute.modify(charge.dispute,
|
||||
... evidence={'uncategorized_text': 'winning_evidence'})
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.stripe_dispute_status == 'won':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> payment.amount
|
||||
Decimal('42.00')
|
||||
>>> payment.stripe_dispute_reason
|
||||
'fraudulent'
|
||||
>>> payment.stripe_dispute_status
|
||||
'won'
|
||||
@@ -0,0 +1,106 @@
|
||||
================================
|
||||
Account Payment Stripe Identical
|
||||
================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> import os
|
||||
|
||||
>>> import stripe
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('account_payment_stripe')
|
||||
|
||||
>>> Company = Model.get('company.company')
|
||||
>>> Cron = Model.get('ir.cron')
|
||||
>>> StripeAccount = Model.get('account.payment.stripe.account')
|
||||
>>> StripeCustomer = Model.get('account.payment.stripe.customer')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create Stripe account::
|
||||
|
||||
>>> stripe_account = StripeAccount(name="Stripe")
|
||||
>>> stripe_account.secret_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
>>> stripe_account.publishable_key = os.getenv('STRIPE_PUBLISHABLE_KEY')
|
||||
>>> stripe_account.save()
|
||||
>>> stripe.api_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
|
||||
Setup cron::
|
||||
|
||||
>>> cron_customer_create, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.customer|stripe_create'),
|
||||
... ])
|
||||
>>> cron_customer_create.companies.append(Company(company.id))
|
||||
>>> cron_customer_create.save()
|
||||
|
||||
Create parties::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> customer1 = Party(name="Customer 1")
|
||||
>>> customer1.save()
|
||||
|
||||
>>> customer2 = Party(name="Customer 2")
|
||||
>>> customer2.save()
|
||||
|
||||
Create a customer::
|
||||
|
||||
>>> stripe_customer1 = StripeCustomer()
|
||||
>>> stripe_customer1.party = customer1
|
||||
>>> stripe_customer1.stripe_account = stripe_account
|
||||
>>> _ = stripe_customer1.click('stripe_checkout')
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4012888888881881',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> StripeCustomer.write(
|
||||
... [stripe_customer1.id], {'stripe_token': token.id}, config.context)
|
||||
|
||||
Run cron::
|
||||
|
||||
>>> cron_customer_create.click('run_once')
|
||||
|
||||
>>> stripe_customer1.reload()
|
||||
>>> stripe_customer1.identical_customers
|
||||
[]
|
||||
|
||||
Create a second customer with same card::
|
||||
|
||||
>>> stripe_customer2 = StripeCustomer()
|
||||
>>> stripe_customer2.party = customer2
|
||||
>>> stripe_customer2.stripe_account = stripe_account
|
||||
>>> _ = stripe_customer2.click('stripe_checkout')
|
||||
>>> token = stripe.Token.create(
|
||||
... card={
|
||||
... 'number': '4012888888881881',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... },
|
||||
... )
|
||||
>>> StripeCustomer.write(
|
||||
... [stripe_customer2.id], {'stripe_token': token.id}, config.context)
|
||||
|
||||
Run cron::
|
||||
|
||||
>>> cron_customer_create.click('run_once')
|
||||
|
||||
>>> stripe_customer2.reload()
|
||||
>>> assertEqual(stripe_customer2.identical_customers, [stripe_customer1])
|
||||
>>> stripe_customer1.reload()
|
||||
>>> assertEqual(stripe_customer1.identical_customers, [stripe_customer2])
|
||||
185
modules/account_payment_stripe/tests/scenario_account_payment_stripe_intent.rst
Executable file
185
modules/account_payment_stripe/tests/scenario_account_payment_stripe_intent.rst
Executable file
@@ -0,0 +1,185 @@
|
||||
======================================
|
||||
Account Payment Stripe Intent Scenario
|
||||
======================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> import os
|
||||
>>> import time
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> import stripe
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, create_fiscalyear
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
>>> FETCH_SLEEP, MAX_SLEEP = 1, 100
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('account_payment_stripe')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> Company = Model.get('company.company')
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = create_fiscalyear(company, today)
|
||||
>>> fiscalyear.click('create_period')
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> _ = create_chart(company)
|
||||
|
||||
Create Stripe account::
|
||||
|
||||
>>> StripeAccount = Model.get('account.payment.stripe.account')
|
||||
>>> stripe_account = StripeAccount(name="Stripe")
|
||||
>>> stripe_account.secret_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
>>> stripe_account.publishable_key = os.getenv('STRIPE_PUBLISHABLE_KEY')
|
||||
>>> stripe_account.save()
|
||||
>>> stripe.api_key = os.getenv('STRIPE_SECRET_KEY')
|
||||
|
||||
Setup fetch events cron::
|
||||
|
||||
>>> Cron = Model.get('ir.cron')
|
||||
>>> cron_fetch_events, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.account|fetch_events'),
|
||||
... ])
|
||||
>>> cron_fetch_events.companies.append(Company(company.id))
|
||||
|
||||
Create payment journal::
|
||||
|
||||
>>> PaymentJournal = Model.get('account.payment.journal')
|
||||
>>> payment_journal = PaymentJournal(name="Stripe",
|
||||
... process_method='stripe', stripe_account=stripe_account)
|
||||
>>> payment_journal.save()
|
||||
|
||||
Create party::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> party = Party(name='Customer')
|
||||
>>> party.save()
|
||||
|
||||
Register card::
|
||||
|
||||
>>> Cron = Model.get('ir.cron')
|
||||
>>> Customer = Model.get('account.payment.stripe.customer')
|
||||
>>> customer = Customer()
|
||||
>>> customer.party = party
|
||||
>>> customer.stripe_account = stripe_account
|
||||
>>> customer.save()
|
||||
|
||||
>>> _ = customer.click('stripe_checkout')
|
||||
>>> payment_method = stripe.PaymentMethod.create(
|
||||
... type='card',
|
||||
... card={
|
||||
... 'number': '4000000000003055',
|
||||
... 'exp_month': 12,
|
||||
... 'exp_year': today.year + 1,
|
||||
... 'cvc': '123',
|
||||
... })
|
||||
>>> setup_intent = stripe.SetupIntent.confirm(
|
||||
... customer.stripe_setup_intent_id,
|
||||
... return_url='http://localhost/',
|
||||
... payment_method=payment_method)
|
||||
>>> cron_update_intent, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.customer|stripe_intent_update'),
|
||||
... ])
|
||||
>>> cron_update_intent.companies.append(Company(company.id))
|
||||
>>> cron_update_intent.click('run_once')
|
||||
>>> customer.reload()
|
||||
>>> bool(customer.stripe_customer_id)
|
||||
True
|
||||
|
||||
Create submitted payment::
|
||||
|
||||
>>> Payment = Model.get('account.payment')
|
||||
>>> payment = Payment()
|
||||
>>> payment.journal = payment_journal
|
||||
>>> payment.kind = 'receivable'
|
||||
>>> payment.party = party
|
||||
>>> payment.amount = Decimal('42')
|
||||
>>> payment.description = 'Testing'
|
||||
>>> payment.stripe_customer = customer
|
||||
>>> payment.stripe_customer_payment_method = payment_method.id
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
Process off-session the payment::
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'succeeded':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'succeeded'
|
||||
>>> bool(payment.stripe_captured)
|
||||
True
|
||||
|
||||
Refund the payment::
|
||||
|
||||
>>> Refund = Model.get('account.payment.stripe.refund')
|
||||
>>> refund = Refund()
|
||||
>>> refund.payment = payment
|
||||
>>> refund.amount = payment.amount
|
||||
>>> refund.click('submit')
|
||||
>>> refund.click('approve')
|
||||
>>> cron_refund_create, = Cron.find([
|
||||
... ('method', '=', 'account.payment.stripe.refund|stripe_create'),
|
||||
... ])
|
||||
>>> cron_refund_create.click('run_once')
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'failed':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'failed'
|
||||
|
||||
Cancel payment intent::
|
||||
|
||||
>>> payment = Payment()
|
||||
>>> payment.journal = payment_journal
|
||||
>>> payment.kind = 'receivable'
|
||||
>>> payment.party = party
|
||||
>>> payment.amount = Decimal('42')
|
||||
>>> payment.description = 'Testing canceled'
|
||||
>>> payment.stripe_customer = customer
|
||||
>>> payment.stripe_customer_payment_method = payment_method.id
|
||||
>>> payment.stripe_capture = False
|
||||
>>> payment.click('submit')
|
||||
>>> payment.state
|
||||
'submitted'
|
||||
|
||||
>>> process_payment = payment.click('process_wizard')
|
||||
>>> payment.state
|
||||
'processing'
|
||||
|
||||
>>> _ = stripe.PaymentIntent.cancel(payment.stripe_payment_intent_id)
|
||||
|
||||
>>> for _ in range(MAX_SLEEP):
|
||||
... cron_fetch_events.click('run_once')
|
||||
... payment.reload()
|
||||
... if payment.state == 'failed':
|
||||
... break
|
||||
... time.sleep(FETCH_SLEEP)
|
||||
>>> payment.state
|
||||
'failed'
|
||||
12
modules/account_payment_stripe/tests/test_module.py
Executable file
12
modules/account_payment_stripe/tests/test_module.py
Executable file
@@ -0,0 +1,12 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
|
||||
|
||||
class AccountPaymentStripeTestCase(ModuleTestCase):
|
||||
'Test Account Payment Stripe module'
|
||||
module = 'account_payment_stripe'
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
11
modules/account_payment_stripe/tests/test_scenario.py
Executable file
11
modules/account_payment_stripe/tests/test_scenario.py
Executable file
@@ -0,0 +1,11 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
import os
|
||||
|
||||
from trytond.tests.test_tryton import load_doc_tests
|
||||
|
||||
if (os.getenv('STRIPE_SECRET_KEY')
|
||||
and os.getenv('STRIPE_PUBLISHABLE_KEY')):
|
||||
def load_tests(*args, **kwargs):
|
||||
return load_doc_tests(__name__, __file__, *args, **kwargs)
|
||||
11
modules/account_payment_stripe/tryton.cfg
Executable file
11
modules/account_payment_stripe/tryton.cfg
Executable file
@@ -0,0 +1,11 @@
|
||||
[tryton]
|
||||
version=7.2.2
|
||||
depends:
|
||||
account
|
||||
account_payment
|
||||
ir
|
||||
party
|
||||
xml:
|
||||
payment.xml
|
||||
party.xml
|
||||
message.xml
|
||||
19
modules/account_payment_stripe/view/account_form.xml
Executable file
19
modules/account_payment_stripe/view/account_form.xml
Executable file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name" colspan="3"/>
|
||||
<label name="secret_key"/>
|
||||
<field name="secret_key" colspan="3"/>
|
||||
<label name="publishable_key"/>
|
||||
<field name="publishable_key" colspan="3"/>
|
||||
<label name="webhook_endpoint"/>
|
||||
<field name="webhook_endpoint" colspan="2"/>
|
||||
<button name="new_identifier"/>
|
||||
<label name="webhook_signing_secret"/>
|
||||
<field name="webhook_signing_secret" colspan="3"/>
|
||||
|
||||
<label name="setup_intent_delay"/>
|
||||
<field name="setup_intent_delay" colspan="3"/>
|
||||
</form>
|
||||
6
modules/account_payment_stripe/view/account_list.xml
Executable file
6
modules/account_payment_stripe/view/account_list.xml
Executable file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="name" expand="1"/>
|
||||
</tree>
|
||||
28
modules/account_payment_stripe/view/customer_form.xml
Executable file
28
modules/account_payment_stripe/view/customer_form.xml
Executable file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
<label name="stripe_account"/>
|
||||
<field name="stripe_account"/>
|
||||
<newline/>
|
||||
<label name="stripe_customer_id"/>
|
||||
<field name="stripe_customer_id"/>
|
||||
<group id="buttons" col="-1" colspan="4">
|
||||
<button name="stripe_checkout"/>
|
||||
<button name="detach_source"/>
|
||||
<button name="find_identical"/>
|
||||
</group>
|
||||
<label name="stripe_error_message"/>
|
||||
<field name="stripe_error_message"/>
|
||||
<newline/>
|
||||
<label name="stripe_error_code"/>
|
||||
<field name="stripe_error_code"/>
|
||||
<label name="stripe_error_param"/>
|
||||
<field name="stripe_error_param"/>
|
||||
|
||||
<field name="identical_customers" colspan="4"/>
|
||||
</form>
|
||||
10
modules/account_payment_stripe/view/customer_list.xml
Executable file
10
modules/account_payment_stripe/view/customer_list.xml
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="party" expand="2"/>
|
||||
<field name="stripe_account" expand="1"/>
|
||||
<field name="stripe_customer_id"/>
|
||||
<field name="stripe_token"/>
|
||||
<button name="stripe_checkout"/>
|
||||
</tree>
|
||||
9
modules/account_payment_stripe/view/customer_source_detach_ask_form.xml
Executable file
9
modules/account_payment_stripe/view/customer_source_detach_ask_form.xml
Executable file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form col="2">
|
||||
<label name="customer"/>
|
||||
<field name="customer"/>
|
||||
<label name="source"/>
|
||||
<field name="source"/>
|
||||
</form>
|
||||
18
modules/account_payment_stripe/view/party_reception_direct_debit_form.xml
Executable file
18
modules/account_payment_stripe/view/party_reception_direct_debit_form.xml
Executable file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='currency']" position="after">
|
||||
<label name="stripe_customer" string="Customer:"/>
|
||||
<field name="stripe_customer" colspan="3"/>
|
||||
|
||||
<label name="stripe_customer_source_selection" string="Source:"/>
|
||||
<field name="stripe_customer_source_selection" colspan="3"/>
|
||||
|
||||
<label name="stripe_customer_payment_method_selection" string="Payment Method:"/>
|
||||
<field name="stripe_customer_payment_method_selection" colspan="3"/>
|
||||
|
||||
<field name="stripe_customer_source" colspan="4" invisible="1"/>
|
||||
<field name="stripe_customer_payment_method" colspan="4" invisible="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
51
modules/account_payment_stripe/view/payment_form.xml
Executable file
51
modules/account_payment_stripe/view/payment_form.xml
Executable file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//group[@id='buttons']" position="inside">
|
||||
<button name="stripe_checkout"/>
|
||||
<button name="stripe_do_capture"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='date']" position="after">
|
||||
<group id="stripe" string="Stripe" colspan="4">
|
||||
<label name="stripe_charge_id" string="Charge ID:"/>
|
||||
<field name="stripe_charge_id" colspan="3"/>
|
||||
<label name="stripe_customer" string="Customer:"/>
|
||||
<field name="stripe_customer" colspan="3"/>
|
||||
<field name="stripe_customer_source" colspan="4" invisible="1"/>
|
||||
<label name="stripe_customer_source_selection" string="Source:"/>
|
||||
<field name="stripe_customer_source_selection" colspan="3"/>
|
||||
<field name="stripe_customer_payment_method" colspan="4" invisible="1"/>
|
||||
<label name="stripe_customer_payment_method_selection" string="Payment Method:"/>
|
||||
<field name="stripe_customer_payment_method_selection" colspan="3"/>
|
||||
<label name="stripe_token" string="Token:"/>
|
||||
<field name="stripe_token" colspan="3"/>
|
||||
<label name="stripe_payment_intent_id" string="Payment Intent:"/>
|
||||
<field name="stripe_payment_intent_id" colspan="3"/>
|
||||
<label name="stripe_capture" string="Capture:"/>
|
||||
<field name="stripe_capture"/>
|
||||
<label name="stripe_capturable" string="Capturable:"/>
|
||||
<field name="stripe_capturable"/>
|
||||
<label name="stripe_chargeable" string="Chargeable:"/>
|
||||
<field name="stripe_chargeable"/>
|
||||
</group>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='description']" position="after">
|
||||
<label name="stripe_error_message"/>
|
||||
<field name="stripe_error_message"/>
|
||||
<newline/>
|
||||
<label name="stripe_error_code"/>
|
||||
<field name="stripe_error_code"/>
|
||||
<label name="stripe_error_param"/>
|
||||
<field name="stripe_error_param"/>
|
||||
<label name="stripe_dispute_status"/>
|
||||
<field name="stripe_dispute_status"/>
|
||||
<label name="stripe_dispute_reason"/>
|
||||
<field name="stripe_dispute_reason"/>
|
||||
</xpath>
|
||||
<xpath expr="//page[@id='description']" position="after">
|
||||
<page name="stripe_refunds" col="1">
|
||||
<field name="stripe_refunds"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/account_payment_stripe/view/payment_journal_form.xml
Executable file
11
modules/account_payment_stripe/view/payment_journal_form.xml
Executable file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="/form/field[@name='process_method']" position="after">
|
||||
<separator name="stripe_account" string="Stripe" colspan="4"/>
|
||||
<label name="stripe_account"/>
|
||||
<field name="stripe_account"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/account_payment_stripe/view/payment_list.xml
Executable file
9
modules/account_payment_stripe/view/payment_list.xml
Executable file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="/tree/button[@name='approve']" position="after">
|
||||
<button name="stripe_checkout"/>
|
||||
<button name="stripe_do_capture"/>
|
||||
</xpath>
|
||||
</data>
|
||||
36
modules/account_payment_stripe/view/refund_form.xml
Executable file
36
modules/account_payment_stripe/view/refund_form.xml
Executable file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="payment"/>
|
||||
<field name="payment" colspan="3"/>
|
||||
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="reason"/>
|
||||
<field name="reason"/>
|
||||
|
||||
<label name="stripe_refund_id"/>
|
||||
<field name="stripe_refund_id" colspan="3"/>
|
||||
|
||||
<label name="stripe_error_message"/>
|
||||
<field name="stripe_error_message" colspan="3"/>
|
||||
|
||||
<label name="stripe_error_code"/>
|
||||
<field name="stripe_error_code"/>
|
||||
<label name="stripe_error_param"/>
|
||||
<field name="stripe_error_param"/>
|
||||
|
||||
<label name="submitted_by"/>
|
||||
<field name="submitted_by"/>
|
||||
<label name="approved_by"/>
|
||||
<field name="approved_by"/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="draft"/>
|
||||
<button name="submit"/>
|
||||
<button name="approve"/>
|
||||
</group>
|
||||
</form>
|
||||
11
modules/account_payment_stripe/view/refund_list.xml
Executable file
11
modules/account_payment_stripe/view/refund_list.xml
Executable file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="payment" expand="1"/>
|
||||
<field name="amount" expand="2"/>
|
||||
<field name="reason" expand="1"/>
|
||||
<field name="state"/>
|
||||
<button name="submit"/>
|
||||
<button name="approve"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user