Initial import from Docker volume
This commit is contained in:
19
modules/account_credit_limit/__init__.py
Executable file
19
modules/account_credit_limit/__init__.py
Executable file
@@ -0,0 +1,19 @@
|
||||
# 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 account, party
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
account.Configuration,
|
||||
account.ConfigurationDefaultCreditLimitAmount,
|
||||
party.Party,
|
||||
party.PartyCreditLimitAmount,
|
||||
module='account_credit_limit', type_='model')
|
||||
Pool.register(
|
||||
account.Level,
|
||||
module='account_credit_limit', type_='model',
|
||||
depends=['account_dunning'])
|
||||
BIN
modules/account_credit_limit/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/__init__.cpython-311.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/__init__.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/account.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/account.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/account.cpython-311.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/account.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/exceptions.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/exceptions.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/exceptions.cpython-311.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/exceptions.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/party.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/party.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/__pycache__/party.cpython-311.pyc
Executable file
BIN
modules/account_credit_limit/__pycache__/party.cpython-311.pyc
Executable file
Binary file not shown.
50
modules/account_credit_limit/account.py
Executable file
50
modules/account_credit_limit/account.py
Executable file
@@ -0,0 +1,50 @@
|
||||
# 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 ModelSQL, fields
|
||||
from trytond.modules.company.model import CompanyValueMixin
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.pyson import Eval
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
default_credit_limit_amount = fields.Numeric(
|
||||
"Default Credit Limit Amount",
|
||||
help="The default credit limit amount for new customers.",
|
||||
digits=(16, Eval('default_credit_limit_amount_digits', 2)))
|
||||
|
||||
|
||||
class Configuration(metaclass=PoolMeta):
|
||||
__name__ = 'account.configuration'
|
||||
|
||||
default_credit_limit_amount = fields.MultiValue(
|
||||
default_credit_limit_amount)
|
||||
default_credit_limit_amount_digits = fields.Function(
|
||||
fields.Integer('Currency Digits'),
|
||||
'get_default_credit_limit_amount_digits')
|
||||
|
||||
def get_default_credit_limit_amount_digits(self, name):
|
||||
pool = Pool()
|
||||
Company = pool.get('company.company')
|
||||
company_id = Transaction().context.get('company')
|
||||
if company_id:
|
||||
company = Company(company_id)
|
||||
return company.currency.digits
|
||||
|
||||
|
||||
class ConfigurationDefaultCreditLimitAmount(ModelSQL, CompanyValueMixin):
|
||||
"Account Configuration Default Credit Limit Amount"
|
||||
__name__ = 'account.configuration.default_credit_limit_amount'
|
||||
default_credit_limit_amount = default_credit_limit_amount
|
||||
default_credit_limit_amount_digits = fields.Function(
|
||||
fields.Integer("Currency Digits"),
|
||||
'on_change_with_default_credit_limit_amount_digits')
|
||||
|
||||
@fields.depends('company')
|
||||
def on_change_with_default_credit_limit_amount_digits(self, name=None):
|
||||
if self.company:
|
||||
return self.company.currency.digits
|
||||
|
||||
|
||||
class Level(metaclass=PoolMeta):
|
||||
__name__ = 'account.dunning.level'
|
||||
credit_limit = fields.Boolean('Credit Limit',
|
||||
help='Has reached the credit limit.')
|
||||
57
modules/account_credit_limit/account.xml
Executable file
57
modules/account_credit_limit/account.xml
Executable file
@@ -0,0 +1,57 @@
|
||||
<?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="res.group" id="group_credit_limit">
|
||||
<field name="name">Account Credit Limit</field>
|
||||
</record>
|
||||
<record model="res.user-res.group"
|
||||
id="user_admin_group_credit_limit">
|
||||
<field name="user" ref="res.user_admin"/>
|
||||
<field name="group" ref="group_credit_limit"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="configuration_view_form">
|
||||
<field name="model">account.configuration</field>
|
||||
<field name="inherit" ref="account.configuration_view_form"/>
|
||||
<field name="name">configuration_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access"
|
||||
id="model_field_access_default_credit_limit_amount">
|
||||
<field name="model">account.configuration</field>
|
||||
<field name="field">default_credit_limit_amount</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access"
|
||||
id="model_field_access_default_credit_limit_amount_group_credit_limit">
|
||||
<field name="model">account.configuration</field>
|
||||
<field name="field">default_credit_limit_amount</field>
|
||||
<field name="group" ref="group_credit_limit"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
<data depends="account_dunning">
|
||||
<record model="ir.ui.view" id="dunning_level_view_form">
|
||||
<field name="model">account.dunning.level</field>
|
||||
<field name="inherit" ref="account_dunning.dunning_level_view_form"/>
|
||||
<field name="name">dunning_level_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="dunning_level_view_list">
|
||||
<field name="model">account.dunning.level</field>
|
||||
<field name="inherit" ref="account_dunning.dunning_level_view_list"/>
|
||||
<field name="name">dunning_level_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="dunning_level_view_list_sequence">
|
||||
<field name="model">account.dunning.level</field>
|
||||
<field name="inherit" ref="account_dunning.dunning_level_view_list_sequence"/>
|
||||
<field name="name">dunning_level_list</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
12
modules/account_credit_limit/exceptions.py
Executable file
12
modules/account_credit_limit/exceptions.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.exceptions import UserError, UserWarning
|
||||
|
||||
|
||||
class CreditLimitError(UserError):
|
||||
pass
|
||||
|
||||
|
||||
class CreditLimitWarning(UserWarning):
|
||||
pass
|
||||
106
modules/account_credit_limit/locale/bg.po
Executable file
106
modules/account_credit_limit/locale/bg.po
Executable file
@@ -0,0 +1,106 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Цифри за валута"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Цифри за валута"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Цифри за валута"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Цифри за валута"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
104
modules/account_credit_limit/locale/ca.po
Executable file
104
modules/account_credit_limit/locale/ca.po
Executable file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Import límit de crèdit per defecte"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimals de la moneda"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Import límit de crèdit per defecte"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimals de la moneda"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Límit de crèdit"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Import de crèdit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Import límit de crèdit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Imports límit de crèdit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimals de la moneda"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Import límit de crèdit"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimals de la moneda"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Tercer"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "El límit de crèdit per defecte per a nous clients."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "El límit de crèdit per defecte per a nous clients."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Ha arribat al límit de crèdit."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Configuració del límit de crèdit per defecte"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "El tercer \"%(party)s\" ha assolit el seu límit de crèdit de %(limit)s."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
"El tercer \"%(party)s\" ha assolit el seu nivell de límit de crèdit "
|
||||
"%(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Import límit de crèdit per tercer"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Límit de crèdit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Límit de crèdit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Límit de crèdit"
|
||||
102
modules/account_credit_limit/locale/cs.po
Executable file
102
modules/account_credit_limit/locale/cs.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
102
modules/account_credit_limit/locale/de.po
Executable file
102
modules/account_credit_limit/locale/de.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Standardkreditlimit"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Nachkommastellen Währung"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Standardkreditlimit"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Nachkommastellen Währung"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kreditlimit anwenden"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Aktuell genutzter Kreditbetrag"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Kreditlimit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Kreditlimit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Nachkommastellen Währung"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Kreditlimit"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Nachkommastellen Währung"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Partei"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Standard Kreditlimit für neue Kunden."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Standard Kreditlimit für neue Kunden."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Kreditlimit ausgeschöpft."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Einstellungen Buchhaltung Standardkonto Kreditlimit"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "Partei \"%(party)s\" hat ihr Kreditlimit von %(limit)s erreicht."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr "Partei \"%(party)s\" hat das Kreditlimitlevel von %(dunning)s erreicht."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Standardkreditlimit"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Buchhaltung Kreditlimit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kreditlimit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kreditlimit"
|
||||
104
modules/account_credit_limit/locale/es.po
Executable file
104
modules/account_credit_limit/locale/es.po
Executable file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Importe límite de crédito por defecto"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimales de la moneda"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Importe límite de crédito por defecto"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimales de la moneda"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Límite de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Importe de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Importe límite de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Importe límite de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimales de la moneda"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Importe límite de crédito"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimales de la moneda"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Tercero"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "El límite de crédito por defecto para nuevos clientes."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "El límite de crédito por defecto para nuevos clientes."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Ha alcanzado el límite de crédito."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Configuración del limite de crédito por defecto"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "El tercero \"%(party)s\" ha alcanzado su límite de crédito de %(limit)s."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
"El tercero \"%(party)s\" ha alcanzado el nivel de límite de crédito "
|
||||
"%(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Importe límite de crédito por tercero"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Límite de crédito"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Límite de crédito"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Límite de crédito"
|
||||
104
modules/account_credit_limit/locale/es_419.po
Executable file
104
modules/account_credit_limit/locale/es_419.po
Executable file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Importe del límite de crédito por defecto"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Importe del límite de crédito por defecto"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Importe del límite de crédito"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Importe del límite de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Importe del límite de crédito"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Límite de crédito por defecto"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
103
modules/account_credit_limit/locale/et.po
Executable file
103
modules/account_credit_limit/locale/et.po
Executable file
@@ -0,0 +1,103 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Vaikimisi krediidilimiit"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuuta numbriväärtuse arv"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Ettevõte"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Vaikimisi krediidilimiit"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuuta numbriväärtuse arv"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Krediidilimiit"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Krediidi väärtus"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Krediidilimiidi väärtus"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Krediidilimiidi väärtus"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuuta numbriväärtuse arv"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Ettevõte"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Krediidilimiidi väärtus"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuuta numbriväärtuse arv"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Osapool"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Uue kliendi krediidilimiit."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Uue kliendi krediidilimiit."
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "On krediidilimiidi saavutanud"
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Konto seadistamine, vaikimisis krediidilimiidi väärtus"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "Osapool \"%(party)s\" on jõudnud krediidilimiidini %(limit)s."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr "Osapool \"%(party)s\" on jõudnud krediidilimiidini %(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Osapoole krediidilimiit"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Konto krediidi limiit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Krediidilimiit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Krediidilimiit"
|
||||
105
modules/account_credit_limit/locale/fa.po
Executable file
105
modules/account_credit_limit/locale/fa.po
Executable file
@@ -0,0 +1,105 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "مقدار محدودیت اعتباری پیش فرض"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "رقم های واحد پول"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "شرکت"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "مقدار محدودیت اعتباری پیش فرض"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "رقم های واحد پول"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "اعتبار محدود"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "مقدار اعتبار"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "مقدار محدودیت اعتبار"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "مقادیر محدودیت اعتبار"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "رقم های واحد پول"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "شرکت"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "مقدار محدودیت اعتبار"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "رقم های واحد پول"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "نهاد/سازمان"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "مقدار محدودیت اعتباری پیش فرض برای مشتریان جدید."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "مقدار محدودیت اعتباری پیش فرض برای مشتریان جدید."
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "به محدودیت اعتباری رسیده است"
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "پیکره بندی حساب پیش فرض مقدار محدودیت اعتبار"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "نهاد/سازمان: \"%(party)s\" به حد اعتبار خود از : \"%(محدودیت)s\" رسیده است."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
"نهاد/سازمان: \"%(party)s\" به حد مجاز سطح محدودیت اعتبار از : \"%(دانینگ)s\""
|
||||
" رسیده است."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "مقدار محدودیت اعتبار نهاد/سازمان"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "حساب اعتبارمحدود"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "اعتبار محدود"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "اعتبار محدود"
|
||||
102
modules/account_credit_limit/locale/fi.po
Executable file
102
modules/account_credit_limit/locale/fi.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
104
modules/account_credit_limit/locale/fr.po
Executable file
104
modules/account_credit_limit/locale/fr.po
Executable file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Montant de limite de crédit par défaut"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Décimales de la devise"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Montant de limite de crédit par défaut"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Décimales de la devise"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limite de crédit"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Montant de crédit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Montant de la limite de crédit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Montants de limite de crédit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Décimales de la devise"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Montant de la limite de crédit"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Décimales de la devise"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Tiers"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Le montant limite de crédit par défaut pour les nouveaux clients."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Le montant limite de crédit par défaut pour les nouveaux clients."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "A atteint la limite de crédit."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Configuration comptable montant limite de crédit par défaut"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "Le tiers « %(party)s » a atteint sa limite de crédit de %(limit)s."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
"Le tiers « %(party)s » a atteint le niveau avec limite de crédit de "
|
||||
"%(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Montant de limite de crédit tiers"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Limite de crédit comptable"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limite de crédit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limite de crédit"
|
||||
109
modules/account_credit_limit/locale/hu.po
Executable file
109
modules/account_credit_limit/locale/hu.po
Executable file
@@ -0,0 +1,109 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Alapértelmezett hitelkeret"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Cég"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Alapértelmezett hitelkeret"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Üzenet a hitelkeret ellenőrzésnél"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Felhasznált hitelkeret"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Hitelkeret"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Hitelkeretek"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Cég"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Hitelkeret"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Ügyfél"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
"Új vevők létrehozásakor ezt a hitelkeretet adja meg automatikusan a "
|
||||
"rendszer."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
"Új vevők létrehozásakor ezt a hitelkeretet adja meg automatikusan a "
|
||||
"rendszer."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
"Jelenjen meg a hitelkeret ellenőrzésnél egy üzenet, hogy nyitott fizetési "
|
||||
"felszólítása van."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "A(z) „%(party)s” ügyfél kimerítette a %(limit)s hitelkeretét."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
"A(z) „%(party)s” ügyfélnek van nyitott fizetési felszólítása, a %(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Hitelkeret"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Hitelkeret"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Hitelkeret"
|
||||
102
modules/account_credit_limit/locale/id.po
Executable file
102
modules/account_credit_limit/locale/id.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Batas Kredit"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Pihak"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Jumlah batas kredit default untuk pelanggan baru."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Jumlah batas kredit default untuk pelanggan baru."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Telah mencapai batas kredit."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "Pihak \"% (party)s\" telah mencapai batas kredit %(limit)s mereka."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Batas Kredit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Batas Kredit"
|
||||
110
modules/account_credit_limit/locale/it.po
Executable file
110
modules/account_credit_limit/locale/it.po
Executable file
@@ -0,0 +1,110 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Importo predeterminato del fido cliente"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "posizioni valuta"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Importo predeterminato del fido cliente"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "posizioni valuta"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "fido cliente"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "importo credito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "importo fido cliente"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "importo fido cliente"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "posizioni valuta"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "importo fido cliente"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "posizioni valuta"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Controparte"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "limite fido cliente raggiunto"
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Importo predeterminato del fido cliente"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Fido Cliente"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Fido Cliente"
|
||||
104
modules/account_credit_limit/locale/lo.po
Executable file
104
modules/account_credit_limit/locale/lo.po
Executable file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "ມູນຄ່າຈຳກັດລົງເງິນຕິດໜີ້ພື້ນຖານ"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "ເລກເສດສະກຸນເງິນ"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "ບໍລິສັດ"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "ມູນຄ່າຈຳກັດວົງເງິນຕິດໜີ້ພື້ນຖານ"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "ເລກເສດສະກຸນເງິນ"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "ວົງໜີ້ຈຳກັດ"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "ມູນຄ່າໜີ້"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "ມູນຄ່າວົງໜີ້ຈຳກັດ"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "ມູນຄ່າຈຳກັດວົງໜີ້"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "້ລກເສດສະກຸນເງິນ"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "ບໍລິສັດ"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "ມູນຄ່າຈຳກັດວົງໜີ້"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "ເລກເສດສະກຸນເງິນ"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "ພາກສ່ວນ"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "ໄດ້ຮອດວົງຈຳກັດໜີ້ແລ້ວ"
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "ການກຳນົດຄ່າບັນຊີຕົ້ນມູນຄ່າຈຳກັດວົງໜີ້"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "ມູນຄ່າຈຳກັດລົງເງິນຕິດໜີ້ຂອງພາກສ່ວນ"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "ວົງໜີ້ຈຳກັດ"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "ວົງໜີ້ຈຳກັດ"
|
||||
102
modules/account_credit_limit/locale/lt.po
Executable file
102
modules/account_credit_limit/locale/lt.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valiutos skaitmenų skaičius"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Organizacija"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valiutos skaitmenų skaičius"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valiutos skaitmenų skaičius"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Organizacija"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valiutos skaitmenų skaičius"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Kontrahentas"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
102
modules/account_credit_limit/locale/nl.po
Executable file
102
modules/account_credit_limit/locale/nl.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Standaard bedrag kredietlimiet"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuta decimalen"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Standaard bedrag kredietlimiet"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuta decimalen"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kredietlimiet"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Hoeveelheid krediet"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Kredietlimiet bedrag"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Kredietlimiet bedragen"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuta decimalen"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Kredietlimiet bedrag"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Valuta decimalen"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Relatie"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Het standaard kredietlimiet bedrag voor nieuwe klanten."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Het standaard kredietlimiet bedrag voor nieuwe klanten."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Heeft de kredietlimiet bereikt."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Rekeningconfiguratie Standaard kredietlimiet bedrag"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "Relatie \"%(party)s\" heeft het kredietlimiet van %(limit)s bereikt."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr "Relatie \"%(party)s\" heeft het kredietlimiet van %(dunning)s bereikt."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Relatie kredietlimiet bedrag"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Kredietlimiet grootboekrekening"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kredietlimiet"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kredietlimiet"
|
||||
102
modules/account_credit_limit/locale/pl.po
Executable file
102
modules/account_credit_limit/locale/pl.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Strona"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
104
modules/account_credit_limit/locale/pt.po
Executable file
104
modules/account_credit_limit/locale/pt.po
Executable file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Limite de crédito total padrão"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Dígitos da moeda"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Montante Padrão Limite de Crédito"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Dígitos Decimais da Moeda"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limite de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Montante de Crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Montante limite de crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Montante do Limite de Crédito"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Dígitos decimais da moeda"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Montante do Limite de Crédito"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Dígitos Decimais da moeda"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Pessoa"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "O limite de crédito padrão para novos clientes."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "O limite de crédito padrão para novos clientes."
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Atingiu o limite de crédito"
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Configuração de Conta Montante Padrão Limite de Crédito"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "A pessoa \"%(party)s\" atingiu o limite de crédito de %(limit)s."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
"A pessoa \"%(party)s\" atingiu o nível de limite de crédito de %(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Montante Limite de Crédito da Pessoa"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Conta de Limite de Crédito"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limite de crédito"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limite de crédito"
|
||||
103
modules/account_credit_limit/locale/ro.po
Executable file
103
modules/account_credit_limit/locale/ro.po
Executable file
@@ -0,0 +1,103 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Limita de Credit Implicita"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Zecimale valută"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Valoarea Limita de Credit Implicita"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Zecimale valută"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limita de credit"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Suma de credit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Suma Limita de Credit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Sume Limita de Credit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Zecimale valută"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Suma Limita de Credit"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Zecimale valută"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Parte"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Suma limita de credit implicita pentru clienti noi."
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr "Valoarea limita de credit implicita pentru clienti noi."
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "A atins limita de credit."
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Limita de Credit Implicita a Configuratiei Contului"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr "Partea \"%(party)s\" a atins limita de credit de %(limit)s."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr "Partea \"%(party)s\" a atins limita de credit %(dunning)s."
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Suma Limita de Credit a Partii"
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Limita de Credit a Contului"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limita de Credit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Limita de Credit"
|
||||
106
modules/account_credit_limit/locale/ru.po
Executable file
106
modules/account_credit_limit/locale/ru.po
Executable file
@@ -0,0 +1,106 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Кол-во цифр валюты"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Кол-во цифр валюты"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Кол-во цифр валюты"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Кол-во цифр валюты"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
103
modules/account_credit_limit/locale/sl.po
Executable file
103
modules/account_credit_limit/locale/sl.po
Executable file
@@ -0,0 +1,103 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Privzeti znesek odobrenega limita"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimalke"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Privzeti znesek odobrenega limita"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimalke"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Odobreni limit"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Odobreni limit"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Znesek odobrenega limita"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Znesek odobrenega limita"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimalke"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Znesek odobrenega limita"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Decimalke"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr "Partner"
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Kreditni limit presežen."
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Konfiguracija privzetega odobrenega limita"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Partnerjev odobreni limit"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Odobreni limit"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Odobreni limit"
|
||||
105
modules/account_credit_limit/locale/tr.po
Executable file
105
modules/account_credit_limit/locale/tr.po
Executable file
@@ -0,0 +1,105 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Öntanımlı Kredi Limit Miktarı"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Para Birimi Basamakları"
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr "Öntanımlı Kredi Limit Miktarı"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Para Birimi Basamakları"
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kredi Limiti"
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr "Kredi Miktarı"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Kredi Limit Miktarı"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr "Kredi Limit Miktarları"
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Para Birimi Basamakları"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr "Kredi Limit Miktarı"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr "Para Birimi Basamakları"
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr "Kredi limitine erişilmiştir"
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr "Hesap Düzenleme Öntanımlı Kredi Limit Miktarı"
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr "Öntanımlı Kredi Limit Miktarı"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kredi Limiti"
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr "Kredi Limiti"
|
||||
102
modules/account_credit_limit/locale/uk.po
Executable file
102
modules/account_credit_limit/locale/uk.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
102
modules/account_credit_limit/locale/zh_CN.po
Executable file
102
modules/account_credit_limit/locale/zh_CN.po
Executable file
@@ -0,0 +1,102 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.default_credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.default_credit_limit_amount,default_credit_limit_amount_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.dunning.level,credit_limit:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_amount:"
|
||||
msgid "Credit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_amounts:"
|
||||
msgid "Credit Limit Amounts"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_amount:"
|
||||
msgid "Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,credit_limit_digits:"
|
||||
msgid "Currency Digits"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:party.party.credit_limit_amount,party:"
|
||||
msgid "Party"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.configuration,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"help:account.configuration.default_credit_limit_amount,default_credit_limit_amount:"
|
||||
msgid "The default credit limit amount for new customers."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.dunning.level,credit_limit:"
|
||||
msgid "Has reached the credit limit."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.default_credit_limit_amount,name:"
|
||||
msgid "Account Configuration Default Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_amount"
|
||||
msgid "Party \"%(party)s\" has reached their credit limit of %(limit)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_party_credit_limit_dunning"
|
||||
msgid "Party \"%(party)s\" has reached the credit limit level of %(dunning)s."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:party.party.credit_limit_amount,name:"
|
||||
msgid "Party Credit Limit Amount"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:res.group,name:group_credit_limit"
|
||||
msgid "Account Credit Limit"
|
||||
msgstr "Account Credit Limit"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:party.party:"
|
||||
msgid "Credit Limit"
|
||||
msgstr ""
|
||||
13
modules/account_credit_limit/message.xml
Executable file
13
modules/account_credit_limit/message.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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_party_credit_limit_amount">
|
||||
<field name="text">Party "%(party)s" has reached their credit limit of %(limit)s.</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_party_credit_limit_dunning">
|
||||
<field name="text">Party "%(party)s" has reached the credit limit level of %(dunning)s.</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
146
modules/account_credit_limit/party.py
Executable file
146
modules/account_credit_limit/party.py
Executable file
@@ -0,0 +1,146 @@
|
||||
# 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.i18n import gettext
|
||||
from trytond.model import ModelSQL, fields
|
||||
from trytond.modules.company.model import CompanyValueMixin
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.pyson import Eval
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
from .exceptions import CreditLimitError, CreditLimitWarning
|
||||
|
||||
|
||||
class Party(metaclass=PoolMeta):
|
||||
__name__ = 'party.party'
|
||||
|
||||
credit_amount = fields.Function(fields.Numeric('Credit Amount',
|
||||
digits=(16, Eval('credit_limit_digits', 2))),
|
||||
'get_credit_amount')
|
||||
credit_limit_amount = fields.MultiValue(fields.Numeric(
|
||||
'Credit Limit Amount',
|
||||
digits=(16, Eval('credit_limit_digits', 2))))
|
||||
credit_limit_digits = fields.Function(fields.Integer('Currency Digits'),
|
||||
'get_credit_limit_digits')
|
||||
credit_limit_amounts = fields.One2Many(
|
||||
'party.party.credit_limit_amount', 'party', "Credit Limit Amounts")
|
||||
|
||||
@classmethod
|
||||
def default_credit_limit_amount(cls, **pattern):
|
||||
pool = Pool()
|
||||
Configuration = pool.get('account.configuration')
|
||||
config = Configuration(1)
|
||||
return config.get_multivalue(
|
||||
'default_credit_limit_amount', **pattern)
|
||||
|
||||
@classmethod
|
||||
def get_credit_amount(cls, parties, name):
|
||||
return {p.id: p.receivable for p in parties}
|
||||
|
||||
@staticmethod
|
||||
def _credit_limit_to_lock():
|
||||
'Return models to lock when checking credit limit'
|
||||
return ['account.move.line']
|
||||
|
||||
def check_credit_limit(self, amount, origin=None):
|
||||
'''
|
||||
Check if amount will not reach credit limit for party
|
||||
If origin is set and user is in group credit_limit then a warning will
|
||||
be raised
|
||||
'''
|
||||
pool = Pool()
|
||||
ModelData = pool.get('ir.model.data')
|
||||
try:
|
||||
Dunning = pool.get('account.dunning')
|
||||
except KeyError:
|
||||
Dunning = None
|
||||
User = pool.get('res.user')
|
||||
Group = pool.get('res.group')
|
||||
Company = pool.get('company.company')
|
||||
Lang = pool.get('ir.lang')
|
||||
Warning = pool.get('res.user.warning')
|
||||
|
||||
if self.credit_limit_amount is None:
|
||||
return
|
||||
|
||||
def in_group():
|
||||
group = Group(ModelData.get_id('account_credit_limit',
|
||||
'group_credit_limit'))
|
||||
transaction = Transaction()
|
||||
user_id = transaction.user
|
||||
if user_id == 0:
|
||||
user_id = transaction.context.get('user', user_id)
|
||||
if user_id == 0:
|
||||
return True
|
||||
user = User(user_id)
|
||||
return origin and group in user.groups
|
||||
|
||||
for model in self._credit_limit_to_lock():
|
||||
Model = pool.get(model)
|
||||
Model.lock()
|
||||
if self.credit_limit_amount < self.credit_amount + amount:
|
||||
company = Company(Transaction().context.get('company'))
|
||||
lang = Lang.get()
|
||||
limit = lang.currency(self.credit_limit_amount, company.currency)
|
||||
if not in_group():
|
||||
raise CreditLimitError(
|
||||
gettext('account_credit_limit'
|
||||
'.msg_party_credit_limit_amount',
|
||||
party=self.rec_name,
|
||||
limit=limit))
|
||||
warning_name = 'credit_limit_amount_%s' % origin
|
||||
if Warning.check(warning_name):
|
||||
raise CreditLimitWarning(warning_name,
|
||||
gettext('account_credit_limit'
|
||||
'.msg_party_credit_limit_amount',
|
||||
party=self.rec_name,
|
||||
limit=limit))
|
||||
|
||||
if Dunning:
|
||||
dunnings = Dunning.search([
|
||||
('party', '=', self.id),
|
||||
('level.credit_limit', '=', True),
|
||||
('blocked', '!=', True),
|
||||
])
|
||||
if dunnings:
|
||||
dunning = dunnings[0]
|
||||
if not in_group():
|
||||
raise CreditLimitError(
|
||||
gettext('account_credit_limit'
|
||||
'.msg_party_credit_limit_dunning',
|
||||
party=self.rec_name,
|
||||
dunning=dunning.rec_name))
|
||||
warning_name = 'credit_limit_dunning_%s' % origin
|
||||
if Warning.check(warning_name):
|
||||
raise CreditLimitWarning(warning_name,
|
||||
gettext('account_credit_limit'
|
||||
'.msg_party_credit_limit_dunning',
|
||||
party=self.rec_name,
|
||||
dunning=dunning.rec_name))
|
||||
|
||||
def get_credit_limit_digits(self, name):
|
||||
pool = Pool()
|
||||
Company = pool.get('company.company')
|
||||
company_id = Transaction().context.get('company')
|
||||
if company_id:
|
||||
company = Company(company_id)
|
||||
return company.currency.digits
|
||||
|
||||
|
||||
class PartyCreditLimitAmount(ModelSQL, CompanyValueMixin):
|
||||
"Party Credit Limit Amount"
|
||||
__name__ = 'party.party.credit_limit_amount'
|
||||
party = fields.Many2One(
|
||||
'party.party', "Party", ondelete='CASCADE',
|
||||
context={
|
||||
'company': Eval('company', -1),
|
||||
},
|
||||
depends={'company'})
|
||||
credit_limit_amount = fields.Numeric(
|
||||
"Credit Limit Amount", digits=(16, Eval('credit_limit_digits', 2)))
|
||||
credit_limit_digits = fields.Function(fields.Integer('Currency Digits'),
|
||||
'on_change_with_credit_limit_digits')
|
||||
|
||||
@fields.depends('company')
|
||||
def on_change_with_credit_limit_digits(self, name=None):
|
||||
if self.company:
|
||||
return self.company.currency.digits
|
||||
28
modules/account_credit_limit/party.xml
Executable file
28
modules/account_credit_limit/party.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. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="party_view_form">
|
||||
<field name="model">party.party</field>
|
||||
<field name="inherit" ref="party.party_view_form"/>
|
||||
<field name="name">party_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access"
|
||||
id="model_field_access_credit_limit_amount">
|
||||
<field name="model">party.party</field>
|
||||
<field name="field">credit_limit_amount</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access"
|
||||
id="model_field_access_credit_limit_amount_group_credit_limit">
|
||||
<field name="model">party.party</field>
|
||||
<field name="field">credit_limit_amount</field>
|
||||
<field name="group" ref="group_credit_limit"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
2
modules/account_credit_limit/tests/__init__.py
Executable file
2
modules/account_credit_limit/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_credit_limit/tests/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_credit_limit/tests/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/tests/__pycache__/__init__.cpython-311.pyc
Executable file
BIN
modules/account_credit_limit/tests/__pycache__/__init__.cpython-311.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/tests/__pycache__/test_module.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_credit_limit/tests/__pycache__/test_module.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_credit_limit/tests/__pycache__/test_module.cpython-311.pyc
Executable file
BIN
modules/account_credit_limit/tests/__pycache__/test_module.cpython-311.pyc
Executable file
Binary file not shown.
83
modules/account_credit_limit/tests/test_module.py
Executable file
83
modules/account_credit_limit/tests/test_module.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.
|
||||
|
||||
from decimal import Decimal
|
||||
|
||||
from trytond.exceptions import UserError, UserWarning
|
||||
from trytond.modules.account.tests import create_chart, get_fiscalyear
|
||||
from trytond.modules.company.tests import (
|
||||
CompanyTestMixin, create_company, set_company)
|
||||
from trytond.pool import Pool
|
||||
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
|
||||
|
||||
|
||||
class AccountCreditLimitTestCase(CompanyTestMixin, ModuleTestCase):
|
||||
'Test AccountCreditLimit module'
|
||||
module = 'account_credit_limit'
|
||||
extras = ['account_dunning']
|
||||
|
||||
@with_transaction()
|
||||
def test_check_credit_limit(self):
|
||||
'Test check_credit_limit'
|
||||
pool = Pool()
|
||||
Account = pool.get('account.account')
|
||||
Move = pool.get('account.move')
|
||||
Journal = pool.get('account.journal')
|
||||
Party = pool.get('party.party')
|
||||
|
||||
company = create_company()
|
||||
with set_company(company):
|
||||
create_chart(company)
|
||||
fiscalyear = get_fiscalyear(company)
|
||||
fiscalyear.save()
|
||||
fiscalyear.create_period([fiscalyear])
|
||||
period = fiscalyear.periods[0]
|
||||
|
||||
receivable, = Account.search([
|
||||
('type.receivable', '=', True),
|
||||
])
|
||||
revenue, = Account.search([
|
||||
('type.revenue', '=', True),
|
||||
])
|
||||
journal, = Journal.search([], limit=1)
|
||||
party, = Party.create([{
|
||||
'name': 'Party',
|
||||
}])
|
||||
Move.create([{
|
||||
'journal': journal.id,
|
||||
'period': period.id,
|
||||
'date': period.start_date,
|
||||
'lines': [
|
||||
('create', [{
|
||||
'debit': Decimal(100),
|
||||
'account': receivable.id,
|
||||
'party': party.id,
|
||||
}, {
|
||||
'credit': Decimal(100),
|
||||
'account': revenue.id,
|
||||
}]),
|
||||
],
|
||||
}])
|
||||
self.assertEqual(party.credit_amount, Decimal(100))
|
||||
self.assertEqual(party.credit_limit_amount, None)
|
||||
party.check_credit_limit(Decimal(0))
|
||||
party.check_credit_limit(Decimal(0), 'test')
|
||||
party.check_credit_limit(Decimal(100))
|
||||
party.check_credit_limit(Decimal(100), 'test')
|
||||
party.credit_limit_amount = Decimal(0)
|
||||
party.save()
|
||||
self.assertRaises(UserError, party.check_credit_limit,
|
||||
Decimal(0))
|
||||
self.assertRaises(UserWarning, party.check_credit_limit,
|
||||
Decimal(0), 'test')
|
||||
party.credit_limit_amount = Decimal(200)
|
||||
party.save()
|
||||
party.check_credit_limit(Decimal(0))
|
||||
party.check_credit_limit(Decimal(0), 'test')
|
||||
self.assertRaises(UserError, party.check_credit_limit,
|
||||
Decimal(150))
|
||||
self.assertRaises(UserWarning, party.check_credit_limit,
|
||||
Decimal(150), 'test')
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
13
modules/account_credit_limit/tryton.cfg
Executable file
13
modules/account_credit_limit/tryton.cfg
Executable file
@@ -0,0 +1,13 @@
|
||||
[tryton]
|
||||
version=7.2.0
|
||||
depends:
|
||||
account
|
||||
company
|
||||
ir
|
||||
party
|
||||
extras_depend:
|
||||
account_dunning
|
||||
xml:
|
||||
account.xml
|
||||
party.xml
|
||||
message.xml
|
||||
13
modules/account_credit_limit/view/configuration_form.xml
Executable file
13
modules/account_credit_limit/view/configuration_form.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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='default_account_payable']"
|
||||
position="after">
|
||||
<separator string="Credit Limit" colspan="4" id="credit_limit"/>
|
||||
<newline/>
|
||||
<label name="default_credit_limit_amount"/>
|
||||
<field name="default_credit_limit_amount"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/account_credit_limit/view/dunning_level_form.xml
Executable file
9
modules/account_credit_limit/view/dunning_level_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. -->
|
||||
<data>
|
||||
<xpath expr="/form/field[@name='overdue']" position="after">
|
||||
<label name="credit_limit"/>
|
||||
<field name="credit_limit"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/account_credit_limit/view/dunning_level_list.xml
Executable file
8
modules/account_credit_limit/view/dunning_level_list.xml
Executable file
@@ -0,0 +1,8 @@
|
||||
<?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/field[@name='overdue']" position="after">
|
||||
<field name="credit_limit"/>
|
||||
</xpath>
|
||||
</data>
|
||||
13
modules/account_credit_limit/view/party_form.xml
Executable file
13
modules/account_credit_limit/view/party_form.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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/notebook/page[@id='accounting']/separator[@id='taxes']"
|
||||
position="before">
|
||||
<separator string="Credit Limit" colspan="4" id="credit_limit"/>
|
||||
<label name="credit_limit_amount"/>
|
||||
<field name="credit_limit_amount"/>
|
||||
<label name="credit_amount"/>
|
||||
<field name="credit_amount"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user