Skip to content

Commit

Permalink
[FIX] traduzioni
Browse files Browse the repository at this point in the history
Co-authored-by: Sergio Zanchetta <primes2h@gmail.com>
  • Loading branch information
TheMule71 and primes2h committed Jan 15, 2021
1 parent 1c1afd3 commit dbdf008
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion l10n_it_causali_pagamento/models/causale_pagamento.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class CausalePagamento(models.Model):
_name = "causale.pagamento"
_description = "Causale Pagamento"
_description = "Payment Reason"

@api.constrains("code")
def _check_code(self):
Expand Down
2 changes: 1 addition & 1 deletion l10n_it_causali_pagamento/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Tabelle delle causali di pagamento da usare ad esempio nelle ritenute d'acconto
Tabelle delle causali di pagamento da usare, ad esempio, nelle ritenute d'acconto.
2 changes: 1 addition & 1 deletion l10n_it_causali_pagamento/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Installando il modulo vengono precaricati i codici disponibili.
E' possibile aggiungere nuovi codici o modificare quelli esistenti.
È possibile aggiungere nuovi codici o modificare quelli esistenti.
Non è possibile avere più di un elemento con lo stesso codice.
8 changes: 4 additions & 4 deletions l10n_it_causali_pagamento/views/causali_pagamento_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<field name="name">view.causale.pagamento.tree</field>
<field name="model">causale.pagamento</field>
<field name="arch" type="xml">
<tree string="Causale pagamento">
<tree string="Payment Reason">
<field name="code" />
<field name="name" />
</tree>
Expand All @@ -16,7 +16,7 @@
<field name="name">view.causale.pagamento.form</field>
<field name="model">causale.pagamento</field>
<field name="arch" type="xml">
<form string="Causale pagamento">
<form string="Payment Reason">
<sheet>
<group>
<field name="code" />
Expand All @@ -28,14 +28,14 @@
</record>

<record id="action_causale_pagamento" model="ir.actions.act_window">
<field name="name">Causali pagamento</field>
<field name="name">Payment Reasons</field>
<field name="res_model">causale.pagamento</field>
<field name="view_id" ref="view_causale_pagamento_tree" />
</record>

<menuitem
id="menu_causale_pagamento"
name="Causali pagamento"
name="Payment Reasons"
action="action_causale_pagamento"
parent="l10n_it_account.account_italian_localization"
groups="account.group_account_manager"
Expand Down

0 comments on commit dbdf008

Please sign in to comment.