diff --git a/README.md b/README.md index 34aa45512c44c95c517844f386e2bb730d8a656a..f51bd15381899898cea73dc714c545dfa8c8a8cb 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ des applications se base sur les données `ldap` et nécessitent `lc_ldap`. * texlive-latex-extra * texlive-lang-french * snimpy + * python-snimpy * snmp-mibs-downloader * libfile-mimeinfo-perl diff --git a/solde/locale/en/LC_MESSAGES/django.po b/solde/locale/en/LC_MESSAGES/django.po index d4f58b35b1cedeb9a2324e8e6826413a07ea53e9..5ce6b4acb8a0cffaf2da74418db4d49131acbc45 100644 --- a/solde/locale/en/LC_MESSAGES/django.po +++ b/solde/locale/en/LC_MESSAGES/django.po @@ -112,23 +112,23 @@ msgstr "Back" #: templates/solde/detail_transac.html:3 #, python-format -msgid "id transaction : %(tr.idTransaction)s" -msgstr "transaction ID: %(tr.idTransaction)s" +msgid "id transaction : %(idTransaction)s" +msgstr "transaction ID: %(idTransaction)s" #: templates/solde/detail_transac.html:4 #, python-format -msgid "montant : %(tr.montant)s" -msgstr "amount: %(tr.montant)s" +msgid "montant : %(montant)s" +msgstr "amount: %(montant)s" #: templates/solde/detail_transac.html:5 #, python-format -msgid "bénéficiaire : %(tr.uid)s" -msgstr "recipient: %(tr.uid)s" +msgid "bénéficiaire : %(uid)s" +msgstr "recipient: %(uid)s" #: templates/solde/detail_transac.html:6 #, python-format -msgid "date : %(tr.created)s" -msgstr "date: %(tr.created)s" +msgid "date : %(created)s" +msgstr "date: %(created)s" #: templates/solde/factures.html:6 msgid "Mes factures Com'N'Pay/PayPal" diff --git a/solde/locale/es/LC_MESSAGES/django.po b/solde/locale/es/LC_MESSAGES/django.po index 78ec45fa854db260a9a9f3ff7e7882a867d5e685..e596a9ca2c4730930197b122b57499482343d3f7 100644 --- a/solde/locale/es/LC_MESSAGES/django.po +++ b/solde/locale/es/LC_MESSAGES/django.po @@ -113,23 +113,23 @@ msgstr "Atrás" #: templates/solde/detail_transac.html:3 #, python-format -msgid "id transaction : %(tr.idTransaction)s" -msgstr "Id transacción: %(tr.idTransaction)s" +msgid "id transaction : %(idTransaction)s" +msgstr "Id transacción: %(idTransaction)s" #: templates/solde/detail_transac.html:4 #, python-format -msgid "montant : %(tr.montant)s" -msgstr "Importe: %(tr.montant)s" +msgid "montant : %(montant)s" +msgstr "Importe: %(montant)s" #: templates/solde/detail_transac.html:5 #, python-format -msgid "bénéficiaire : %(tr.uid)s" -msgstr "Beneficiario: %(tr.uid)s" +msgid "bénéficiaire : %(uid)s" +msgstr "Beneficiario: %(uid)s" #: templates/solde/detail_transac.html:6 #, python-format -msgid "date : %(tr.created)s" -msgstr "Fecha: %(tr.created)s" +msgid "date : %(created)s" +msgstr "Fecha: %(created)s" #: templates/solde/factures.html:6 msgid "Mes factures Com'N'Pay/PayPal" diff --git a/solde/templates/solde/credited.html b/solde/templates/solde/credited.html index 933400982ec5590ad5b5a292054041c7d9229d91..6e9ba92d5af637f6d9b16e035aadaeccce39d793 100644 --- a/solde/templates/solde/credited.html +++ b/solde/templates/solde/credited.html @@ -1,4 +1,5 @@ {% extends "solde/base.html" %} +{% load i18n %} {% block h1 %}{% trans "Transaction déjà validée" %}{% endblock %} {% block content %} {% include 'solde/detail_transac.html' %} diff --git a/solde/templates/solde/detail_transac.html b/solde/templates/solde/detail_transac.html index aec23f43003618d2ff3672559652d37f7e44c8a6..fcc25cde0fd447470797d7efcf42d7b287a750fe 100644 --- a/solde/templates/solde/detail_transac.html +++ b/solde/templates/solde/detail_transac.html @@ -1,7 +1,7 @@ {% load i18n %}