[tryton-debian-vcs] tryton-modules-bank branch upstream updated. upstream/4.2.0-1-gb5f3bbe
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Jun 7 13:32:54 UTC 2017
The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-bank.git;a=commitdiff;h=upstream/4.2.0-1-gb5f3bbe
commit b5f3bbe75c708a2c43cd8dff7354abfb54654b52
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Jun 7 15:26:03 2017 +0200
Adding upstream version 4.4.0.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 8782922..53ad1f8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.0 - 2017-05-01
+* Bug fixes (see mercurial logs for details)
+
Version 4.2.0 - 2016-11-28
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 20bd036..4d643a0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2013-2016 Cédric Krier.
-Copyright (C) 2013-2016 B2CK SPRL.
+Copyright (C) 2013-2017 Cédric Krier.
+Copyright (C) 2013-2017 B2CK SPRL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index af8c13f..c2c065b 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond_bank
-Version: 4.2.0
+Version: 4.4.0
Summary: Tryton module with banks
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: issue_tracker at tryton.org
License: GPL-3
-Download-URL: http://downloads.tryton.org/4.2/
+Download-URL: http://downloads.tryton.org/4.4/
Description: trytond_bank
============
@@ -52,7 +52,7 @@ Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Legal Industry
Classifier: Intended Audience :: Manufacturing
-Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Bulgarian
Classifier: Natural Language :: Catalan
Classifier: Natural Language :: Chinese (Simplified)
diff --git a/bank.py b/bank.py
index 0d6c410..730db49 100644
--- a/bank.py
+++ b/bank.py
@@ -15,7 +15,7 @@ class Bank(ModelSQL, ModelView):
_rec_name = 'party'
party = fields.Many2One('party.party', 'Party', required=True,
ondelete='CASCADE')
- bic = fields.Char('BIC', size=11, help='Bank/Business Identifier Code')
+ bic = fields.Char('BIC', size=11, help="Bank/Business Identifier Code.")
def get_rec_name(self, name):
return self.party.rec_name
@@ -24,13 +24,16 @@ class Bank(ModelSQL, ModelView):
class BankAccount(ModelSQL, ModelView):
'Bank Account'
__name__ = 'bank.account'
- bank = fields.Many2One('bank', 'Bank', required=True)
+ bank = fields.Many2One('bank', 'Bank', required=True,
+ help="The bank where the account is open.")
owners = fields.Many2Many('bank.account-party.party', 'account', 'owner',
'Owners')
currency = fields.Many2One('currency.currency', 'Currency')
numbers = fields.One2Many('bank.account.number', 'account', 'Numbers',
- required=True)
- active = fields.Boolean('Active', select=True)
+ required=True,
+ help="Add the numbers which identify the bank account.")
+ active = fields.Boolean('Active', select=True,
+ help="Uncheck to exclude the bank account from future use.")
@staticmethod
def default_active():
@@ -49,7 +52,8 @@ class BankAccountNumber(sequence_ordered(), ModelSQL, ModelView):
__name__ = 'bank.account.number'
_rec_name = 'number'
account = fields.Many2One('bank.account', 'Account', required=True,
- ondelete='CASCADE', select=True)
+ ondelete='CASCADE', select=True,
+ help="The bank account which is identified by the number.")
type = fields.Selection([
('iban', 'IBAN'),
('other', 'Other'),
diff --git a/locale/bg.po b/locale/bg.po
index f66f33d..551366a 100644
--- a/locale/bg.po
+++ b/locale/bg.po
@@ -198,7 +198,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
msgctxt "model:bank,name:"
diff --git a/locale/ca.po b/locale/ca.po
index c666bfa..8d89d6c 100644
--- a/locale/ca.po
+++ b/locale/ca.po
@@ -163,9 +163,25 @@ msgid "Bank Accounts"
msgstr "Comptes bancaris"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "Codi Identificador de Banc/Negoci (BIC)."
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Desmarca per excloure el compte bancari d'us en el futur."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "El banc on s'ha obert el compte."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Afegiu nombres que identifiquen el compte bancari."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "El compte bancari que està identificat per aquest nombre."
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr "Banc"
diff --git a/locale/cs.po b/locale/cs.po
index 3e83a45..c083383 100644
--- a/locale/cs.po
+++ b/locale/cs.po
@@ -167,7 +167,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
msgctxt "model:bank,name:"
diff --git a/locale/de.po b/locale/de.po
index 1ce3840..3d8731f 100644
--- a/locale/de.po
+++ b/locale/de.po
@@ -163,9 +163,25 @@ msgid "Bank Accounts"
msgstr "Bankkonten"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "Bank/BIC (Business Identifier Code)"
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Deaktivieren um das Bankkonto für zukünftige Nutzung zu sperren."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "Die Bank bei der das Konto eröffnet wurde."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Die Nummer die das Bankkonto identifiziert hinzufügen."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "Das Bankkonto das durch die Nummer identifiziert wird."
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr "Bank"
diff --git a/locale/es.po b/locale/es.po
index a8b7b13..ac7aa19 100644
--- a/locale/es.po
+++ b/locale/es.po
@@ -163,9 +163,25 @@ msgid "Bank Accounts"
msgstr "Cuentas bancarias"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "Código Identificador de Banco/Negocio (BIC)."
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Desmarcar para excluir la cuenta bancaria de uso en el futuro."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "El banco donde se ha abierto la cuenta."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Añade números que identifiquen la cuenta bancaria."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "La cuenta bancaria que se identifica por este número."
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr "Banco"
diff --git a/locale/es_419.po b/locale/es_419.po
index dbc652c..a6ad1eb 100644
--- a/locale/es_419.po
+++ b/locale/es_419.po
@@ -16,7 +16,7 @@ msgstr ""
msgctxt "field:bank,create_uid:"
msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
msgctxt "field:bank,id:"
msgid "ID"
@@ -36,7 +36,7 @@ msgstr ""
msgctxt "field:bank,write_uid:"
msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
msgctxt "field:bank.account,active:"
msgid "Active"
@@ -52,7 +52,7 @@ msgstr ""
msgctxt "field:bank.account,create_uid:"
msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
msgctxt "field:bank.account,currency:"
msgid "Currency"
@@ -80,7 +80,7 @@ msgstr ""
msgctxt "field:bank.account,write_uid:"
msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
msgctxt "field:bank.account-party.party,account:"
msgid "Account"
@@ -92,7 +92,7 @@ msgstr ""
msgctxt "field:bank.account-party.party,create_uid:"
msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
msgctxt "field:bank.account-party.party,id:"
msgid "ID"
@@ -112,7 +112,7 @@ msgstr ""
msgctxt "field:bank.account-party.party,write_uid:"
msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
msgctxt "field:bank.account.number,account:"
msgid "Account"
@@ -124,7 +124,7 @@ msgstr ""
msgctxt "field:bank.account.number,create_uid:"
msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
msgctxt "field:bank.account.number,id:"
msgid "ID"
@@ -156,16 +156,32 @@ msgstr ""
msgctxt "field:bank.account.number,write_uid:"
msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
msgctxt "field:party.party,bank_accounts:"
msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "Código de Identificación del Banco (BIC / SWIFT)"
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr ""
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr ""
@@ -200,7 +216,7 @@ msgstr ""
msgctxt "model:ir.ui.menu,name:menu_banking"
msgid "Banking"
-msgstr "Bancos"
+msgstr ""
msgctxt "model:res.group,name:group_bank_admin"
msgid "Bank Administration"
@@ -216,4 +232,4 @@ msgstr ""
msgctxt "view:party.party:"
msgid "Banking"
-msgstr "Bancos"
+msgstr ""
diff --git a/locale/fr.po b/locale/fr.po
index 71c4286..26296ea 100644
--- a/locale/fr.po
+++ b/locale/fr.po
@@ -163,8 +163,24 @@ msgid "Bank Accounts"
msgstr "Comptes bancaires"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
-msgstr "Code d'identification des banques"
+msgid "Bank/Business Identifier Code."
+msgstr "Code d'identification des banques."
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Décocher pour exclure le compte bancaire d'une utilisation future."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "La banque où le compte est ouvert."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Ajouter les numéros qui identifient le compte bancaire."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "Le compte bancaire qui est identifié par le numéro."
msgctxt "model:bank,name:"
msgid "Bank"
diff --git a/locale/hu_HU.po b/locale/hu_HU.po
index d712b6e..4ce629a 100644
--- a/locale/hu_HU.po
+++ b/locale/hu_HU.po
@@ -162,10 +162,27 @@ msgctxt "field:party.party,bank_accounts:"
msgid "Bank Accounts"
msgstr "Bankszámla"
+#, fuzzy
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "Bank/BIC"
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr ""
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr "Bank"
diff --git a/locale/it_IT.po b/locale/it_IT.po
index cafcdb8..ce386ae 100644
--- a/locale/it_IT.po
+++ b/locale/it_IT.po
@@ -163,10 +163,27 @@ msgctxt "field:party.party,bank_accounts:"
msgid "Bank Accounts"
msgstr "conti bancari"
+#, fuzzy
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "codice identificatore banca/azienda"
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr ""
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr "Banca"
diff --git a/locale/ja_JP.po b/locale/ja_JP.po
index 2cd900d..b4f83bb 100644
--- a/locale/ja_JP.po
+++ b/locale/ja_JP.po
@@ -166,7 +166,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
#, fuzzy
diff --git a/locale/lo.po b/locale/lo.po
index 9949b0b..7fe99ac 100644
--- a/locale/lo.po
+++ b/locale/lo.po
@@ -4,252 +4,232 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "error:bank.account.number:"
msgid "Invalid IBAN \"%s\"."
-msgstr ""
+msgstr "ເລກບັນຊີ IBAN \"%s\" ບໍ່ຖືກຕ້ອງ."
msgctxt "field:bank,bic:"
msgid "BIC"
-msgstr ""
+msgstr "BIC"
-#, fuzzy
msgctxt "field:bank,create_date:"
msgid "Create Date"
-msgstr "ສ້າງວັນທີ"
+msgstr "ວັນທີສ້າງ"
-#, fuzzy
msgctxt "field:bank,create_uid:"
msgid "Create User"
-msgstr "ສ້າງຜູ້ໃຊ້ງານ"
+msgstr "ຜູ້ສ້າງ"
-#, fuzzy
msgctxt "field:bank,id:"
msgid "ID"
-msgstr "ເລດລຳດັບ"
+msgstr "ເລກລຳດັບ"
-#, fuzzy
msgctxt "field:bank,party:"
msgid "Party"
msgstr "ພາກສ່ວນ"
-#, fuzzy
msgctxt "field:bank,rec_name:"
msgid "Name"
msgstr "ຊື່"
-#, fuzzy
msgctxt "field:bank,write_date:"
msgid "Write Date"
msgstr "ວັນທີບັນທຶກ"
-#, fuzzy
msgctxt "field:bank,write_uid:"
msgid "Write User"
-msgstr "ສ້າງຜູ້ໃຊ້"
+msgstr "ຜູ້ບັນທຶກ"
-#, fuzzy
msgctxt "field:bank.account,active:"
msgid "Active"
msgstr "ໃຊ້ຢູ່"
msgctxt "field:bank.account,bank:"
msgid "Bank"
-msgstr ""
+msgstr "ທະນາຄານ"
-#, fuzzy
msgctxt "field:bank.account,create_date:"
msgid "Create Date"
-msgstr "ສ້າງວັນທີ"
+msgstr "ວັນທີສ້າງ"
-#, fuzzy
msgctxt "field:bank.account,create_uid:"
msgid "Create User"
-msgstr "ສ້າງຜູ້ໃຊ້ງານ"
+msgstr "ຜູ້ສ້າງ"
-#, fuzzy
msgctxt "field:bank.account,currency:"
msgid "Currency"
msgstr "ສະກຸນເງິນ"
-#, fuzzy
msgctxt "field:bank.account,id:"
msgid "ID"
-msgstr "ເລດລຳດັບ"
+msgstr "ເລກລຳດັບ"
-#, fuzzy
msgctxt "field:bank.account,numbers:"
msgid "Numbers"
-msgstr "ເລກທີ"
+msgstr "ເລກບັນຊີ"
msgctxt "field:bank.account,owners:"
msgid "Owners"
-msgstr ""
+msgstr "ເຈົ້າຂອງບັນຊີ"
-#, fuzzy
msgctxt "field:bank.account,rec_name:"
msgid "Name"
msgstr "ຊື່"
-#, fuzzy
msgctxt "field:bank.account,write_date:"
msgid "Write Date"
msgstr "ວັນທີບັນທຶກ"
-#, fuzzy
msgctxt "field:bank.account,write_uid:"
msgid "Write User"
-msgstr "ສ້າງຜູ້ໃຊ້"
+msgstr "ຜູ້ບັນທຶກ"
-#, fuzzy
msgctxt "field:bank.account-party.party,account:"
msgid "Account"
msgstr "ບັນຊີ"
-#, fuzzy
msgctxt "field:bank.account-party.party,create_date:"
msgid "Create Date"
-msgstr "ສ້າງວັນທີ"
+msgstr "ວັນທີສ້າງ"
-#, fuzzy
msgctxt "field:bank.account-party.party,create_uid:"
msgid "Create User"
-msgstr "ສ້າງຜູ້ໃຊ້ງານ"
+msgstr "ຜູ້ສ້າງ"
-#, fuzzy
msgctxt "field:bank.account-party.party,id:"
msgid "ID"
-msgstr "ເລດລຳດັບ"
+msgstr "ເລກລຳດັບ"
msgctxt "field:bank.account-party.party,owner:"
msgid "Owner"
-msgstr ""
+msgstr "ເຈົ້າຂອງບັນຊີ"
-#, fuzzy
msgctxt "field:bank.account-party.party,rec_name:"
msgid "Name"
msgstr "ຊື່"
-#, fuzzy
msgctxt "field:bank.account-party.party,write_date:"
msgid "Write Date"
msgstr "ວັນທີບັນທຶກ"
-#, fuzzy
msgctxt "field:bank.account-party.party,write_uid:"
msgid "Write User"
-msgstr "ສ້າງຜູ້ໃຊ້"
+msgstr "ຜູ້ບັນທຶກ"
-#, fuzzy
msgctxt "field:bank.account.number,account:"
msgid "Account"
msgstr "ບັນຊີ"
-#, fuzzy
msgctxt "field:bank.account.number,create_date:"
msgid "Create Date"
-msgstr "ສ້າງວັນທີ"
+msgstr "ວັນທີສ້າງ"
-#, fuzzy
msgctxt "field:bank.account.number,create_uid:"
msgid "Create User"
-msgstr "ສ້າງຜູ້ໃຊ້ງານ"
+msgstr "ຜູ້ສ້າງ"
-#, fuzzy
msgctxt "field:bank.account.number,id:"
msgid "ID"
-msgstr "ເລດລຳດັບ"
+msgstr "ເລກລຳດັບ"
-#, fuzzy
msgctxt "field:bank.account.number,number:"
msgid "Number"
-msgstr "ເລກທີ"
+msgstr "ເລກບັນຊີ"
msgctxt "field:bank.account.number,number_compact:"
msgid "Number Compact"
-msgstr ""
+msgstr "ເລກບັນຊີຍໍ້"
-#, fuzzy
msgctxt "field:bank.account.number,rec_name:"
msgid "Name"
msgstr "ຊື່"
-#, fuzzy
msgctxt "field:bank.account.number,sequence:"
msgid "Sequence"
msgstr "ລໍາດັບ"
-#, fuzzy
msgctxt "field:bank.account.number,type:"
msgid "Type"
-msgstr "ຮູບແບບ"
+msgstr "ປະເພດ"
-#, fuzzy
msgctxt "field:bank.account.number,write_date:"
msgid "Write Date"
msgstr "ວັນທີບັນທຶກ"
-#, fuzzy
msgctxt "field:bank.account.number,write_uid:"
msgid "Write User"
-msgstr "ສ້າງຜູ້ໃຊ້"
+msgstr "ຜູ້ບັນທຶກ"
msgctxt "field:party.party,bank_accounts:"
msgid "Bank Accounts"
-msgstr ""
+msgstr "ບັນຊີທະນາຄານ"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
-msgstr ""
+msgid "Bank/Business Identifier Code."
+msgstr "ທະນາຄານ/ລະຫັດລະບຸຕົວຕົນທຸລະກິດ"
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "ປົດໝາຍອອກເພື່ອບໍ່ລວມເອົາບັນຊີທະນາຄານຈາກການໃຊ້ງານໃນອະນາຄົດ"
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "ທະນາຄານບ່ອນທີ່ເປີດບັນຊີຢູ່"
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "ໃສ່ເລກທີ່ລະບຸບັນຊີທະນາຄານ"
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "ບັນຊີທະນາຄານທີ່ຖືກລະບຸຕົວຕົນດ້ວຍເລກບັນຊີ"
msgctxt "model:bank,name:"
msgid "Bank"
-msgstr ""
+msgstr "ທະນາຄານ"
msgctxt "model:bank.account,name:"
msgid "Bank Account"
-msgstr ""
+msgstr "ບັນຊີທະນາຄານ"
msgctxt "model:bank.account-party.party,name:"
msgid "Bank Account - Party"
-msgstr ""
+msgstr "ບັນຊີທະນາຄານ - ພາກສ່ວນ"
msgctxt "model:bank.account.number,name:"
msgid "Bank Account Number"
-msgstr ""
+msgstr "ເລກບັນຊີທະນາຄານ"
-#, fuzzy
msgctxt "model:ir.action,name:act_bank_account_form"
msgid "Accounts"
msgstr "ບັນຊີ"
msgctxt "model:ir.action,name:act_bank_form"
msgid "Banks"
-msgstr ""
+msgstr "ທະນາຄານ"
-#, fuzzy
msgctxt "model:ir.ui.menu,name:menu_bank_account_form"
msgid "Accounts"
msgstr "ບັນຊີ"
msgctxt "model:ir.ui.menu,name:menu_bank_form"
msgid "Banks"
-msgstr ""
+msgstr "ທະນາຄານ"
msgctxt "model:ir.ui.menu,name:menu_banking"
msgid "Banking"
-msgstr ""
+msgstr "ການທະນາຄານ"
msgctxt "model:res.group,name:group_bank_admin"
msgid "Bank Administration"
-msgstr ""
+msgstr "ການບໍລິຫານທະນາຄານ"
msgctxt "selection:bank.account.number,type:"
msgid "IBAN"
-msgstr ""
+msgstr "IBAN"
-#, fuzzy
msgctxt "selection:bank.account.number,type:"
msgid "Other"
msgstr "ອື່ນໆ"
msgctxt "view:party.party:"
msgid "Banking"
-msgstr ""
+msgstr "ການທະນາຄານ"
diff --git a/locale/lt.po b/locale/lt.po
index 3e83a45..c083383 100644
--- a/locale/lt.po
+++ b/locale/lt.po
@@ -167,7 +167,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
msgctxt "model:bank,name:"
diff --git a/locale/nl.po b/locale/nl.po
index 7e5e70b..d726817 100644
--- a/locale/nl.po
+++ b/locale/nl.po
@@ -190,7 +190,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
msgctxt "model:bank,name:"
diff --git a/locale/pl.po b/locale/pl.po
index baa3d04..5b8a67f 100644
--- a/locale/pl.po
+++ b/locale/pl.po
@@ -40,7 +40,7 @@ msgstr "Zapisał"
msgctxt "field:bank.account,active:"
msgid "Active"
-msgstr "Aktywny"
+msgstr "Aktywne"
msgctxt "field:bank.account,bank:"
msgid "Bank"
@@ -64,7 +64,7 @@ msgstr "ID"
msgctxt "field:bank.account,numbers:"
msgid "Numbers"
-msgstr "Numery"
+msgstr "Numery kont"
msgctxt "field:bank.account,owners:"
msgid "Owners"
@@ -144,7 +144,7 @@ msgstr "Nazwa"
msgctxt "field:bank.account.number,sequence:"
msgid "Sequence"
-msgstr "Kolejność"
+msgstr "Sekwencja"
msgctxt "field:bank.account.number,type:"
msgid "Type"
@@ -163,8 +163,24 @@ msgid "Bank Accounts"
msgstr "Konta bankowe"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
-msgstr "Bankowy/biznesowy kod identyfikacyjny"
+msgid "Bank/Business Identifier Code."
+msgstr "Bankowy/biznesowy kod identyfikacyjny."
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Odznacz, aby nie używać konta w przyszłości."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "Bank, w którym otworzono konto."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Dodaj cyfry identyfikujące konto w banku."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "Konto bankowe identyfikowane przez numer."
msgctxt "model:bank,name:"
msgid "Bank"
@@ -184,7 +200,7 @@ msgstr "Numer konta bankowego"
msgctxt "model:ir.action,name:act_bank_account_form"
msgid "Accounts"
-msgstr "Konta"
+msgstr "Konta bankowe"
msgctxt "model:ir.action,name:act_bank_form"
msgid "Banks"
@@ -192,7 +208,7 @@ msgstr "Banki"
msgctxt "model:ir.ui.menu,name:menu_bank_account_form"
msgid "Accounts"
-msgstr "Konta"
+msgstr "Konta bankowe"
msgctxt "model:ir.ui.menu,name:menu_bank_form"
msgid "Banks"
diff --git a/locale/pt_BR.po b/locale/pt_BR.po
index 25bec2a..33b31ec 100644
--- a/locale/pt_BR.po
+++ b/locale/pt_BR.po
@@ -163,8 +163,24 @@ msgid "Bank Accounts"
msgstr "Contas Bancárias"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
-msgstr "Código Identificador do Banco/Negócio"
+msgid "Bank/Business Identifier Code."
+msgstr "Código Identificador do Banco/Negócio."
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Desmarque para remover a conta bancária de uso futuro."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "O banco em que a conta foi aberta."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Adicione os números que identificam a conta bancária."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "A conta bancária a qual é identificada pelo número."
msgctxt "model:bank,name:"
msgid "Bank"
diff --git a/locale/ru.po b/locale/ru.po
index 9a57780..b8a7bf0 100644
--- a/locale/ru.po
+++ b/locale/ru.po
@@ -198,7 +198,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
msgctxt "model:bank,name:"
diff --git a/locale/sl.po b/locale/sl.po
index 2f1194f..495c8e9 100644
--- a/locale/sl.po
+++ b/locale/sl.po
@@ -163,9 +163,25 @@ msgid "Bank Accounts"
msgstr "Bančni računi"
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
msgstr "Bančna/poslovna identifikacijska šifra"
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr "Odznačite za Izklop nadaljnje uporabe bančnega računa."
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr "Banka, pri kateri je račun odprt."
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr "Vpišite številke za identifikacijo bančnega računa."
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
+msgstr "Bančni račun, ki je identificiran s številko."
+
msgctxt "model:bank,name:"
msgid "Bank"
msgstr "Banka"
diff --git a/locale/zh_CN.po b/locale/zh_CN.po
index 55cebba..a5f8dd5 100644
--- a/locale/zh_CN.po
+++ b/locale/zh_CN.po
@@ -190,7 +190,23 @@ msgid "Bank Accounts"
msgstr ""
msgctxt "help:bank,bic:"
-msgid "Bank/Business Identifier Code"
+msgid "Bank/Business Identifier Code."
+msgstr ""
+
+msgctxt "help:bank.account,active:"
+msgid "Uncheck to exclude the bank account from future use."
+msgstr ""
+
+msgctxt "help:bank.account,bank:"
+msgid "The bank where the account is open."
+msgstr ""
+
+msgctxt "help:bank.account,numbers:"
+msgid "Add the numbers which identify the bank account."
+msgstr ""
+
+msgctxt "help:bank.account.number,account:"
+msgid "The bank account which is identified by the number."
msgstr ""
msgctxt "model:bank,name:"
diff --git a/setup.py b/setup.py
index b84d054..4aa58cc 100644
--- a/setup.py
+++ b/setup.py
@@ -79,7 +79,7 @@ setup(name=name,
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Legal Industry',
'Intended Audience :: Manufacturing',
- 'License :: OSI Approved :: GNU General Public License (GPL)',
+ 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: Bulgarian',
'Natural Language :: Catalan',
'Natural Language :: Chinese (Simplified)',
diff --git a/tryton.cfg b/tryton.cfg
index 47f23dd..774aa8b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.2.0
+version=4.4.0
depends:
ir
party
diff --git a/trytond_bank.egg-info/PKG-INFO b/trytond_bank.egg-info/PKG-INFO
index 9f75341..7ba08e4 100644
--- a/trytond_bank.egg-info/PKG-INFO
+++ b/trytond_bank.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond-bank
-Version: 4.2.0
+Version: 4.4.0
Summary: Tryton module with banks
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: issue_tracker at tryton.org
License: GPL-3
-Download-URL: http://downloads.tryton.org/4.2/
+Download-URL: http://downloads.tryton.org/4.4/
Description: trytond_bank
============
@@ -52,7 +52,7 @@ Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Legal Industry
Classifier: Intended Audience :: Manufacturing
-Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Bulgarian
Classifier: Natural Language :: Catalan
Classifier: Natural Language :: Chinese (Simplified)
diff --git a/trytond_bank.egg-info/requires.txt b/trytond_bank.egg-info/requires.txt
index a913712..1a67084 100644
--- a/trytond_bank.egg-info/requires.txt
+++ b/trytond_bank.egg-info/requires.txt
@@ -1,5 +1,5 @@
python-stdnum
python-sql >= 0.4
-trytond_party >= 4.2, < 4.3
-trytond_currency >= 4.2, < 4.3
-trytond >= 4.2, < 4.3
+trytond_party >= 4.4, < 4.5
+trytond_currency >= 4.4, < 4.5
+trytond >= 4.4, < 4.5
--
tryton-modules-bank
More information about the tryton-debian-vcs
mailing list